home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / CUGUK / COMMS / C100.ZIP / KERMIT.ZIP / CKUKER.MSS < prev    next >
Text File  |  1990-01-31  |  97KB  |  2,070 lines

  1. @Part(CKUNIX,root="KER:KUSER")
  2. @string(-ckversion="@q<4E(068)>")
  3. @define(exx=example,above 2,below 1)
  4. @Chapter<UNIX KERMIT>
  5.  
  6. @case(device,file="********@*
  7. This document is formatted as an ordinary, plain text ASCII disk file.
  8. Typeset copies are available in the Kermit User Guide from Columbia
  9. University.  Changes should be made to CKUKER.MSS.@*********")
  10.  
  11. @Begin<Description,Leftmargin +12,Indent -12,spread 0>
  12. @i(Program:)@\Frank da Cruz, Bill Catchings, Jeff Damens, Columbia
  13. University; Herm Fischer, Encino CA; contributions by many others.
  14.  
  15. @i(Language:)@\C
  16.  
  17. @i(Documentation:)@\Frank da Cruz, Herm Fischer
  18.  
  19. @i(Version:)@\@value(-ckversion)
  20.  
  21. @i(Date: )@\January 24, 1988
  22. @end<Description>
  23.  
  24. C-Kermit is an implementation of Kermit, written modularly and
  25. transportably in C.  The protocol state transition table is written in
  26. @i'wart', a (non-@|proprietary) lex-@|like preprocessor for C.
  27. System-@|dependent primitive functions are isolated into separately compiled
  28. modules so that the program should be easily portable among Unix systems and
  29. also to non-@|Unix systems that have C compilers, such as VAX/VMS, Data General
  30. AOS/VS, Apollo Aegis, the Apple Macintosh, and the Commodore Amiga.  This
  31. document applies to Unix implementations of C-Kermit, and in most ways also to
  32. the VMS, Data General, and other implementations.
  33.  
  34. @subheading<Unix Kermit Capabilities At A Glance:>
  35. @begin<format,leftmargin +2,above 1,below 1>
  36. @tabclear()@tabset(3.5inches,4.0inches)
  37. Local operation:@\Yes
  38. Remote operation:@\Yes
  39. Login scripts:@\Yes (UUCP style)
  40. Transfer text files:@\Yes
  41. Transfer binary files:@\Yes
  42. Wildcard send:@\Yes
  43. File transfer interruption:@\Yes
  44. Filename collision avoidance:@\Yes
  45. Can time out:@\Yes
  46. 8th-bit prefixing:@\Yes
  47. Repeat count prefixing:@\Yes
  48. Alternate block checks:@\Yes
  49. Terminal emulation:@\Yes
  50. Communication settings:@\Yes
  51. Transmit BREAK:@\Yes (most versions)
  52. Support for dialout modems:@\Yes
  53. IBM mainframe communication:@\Yes
  54. Transaction logging:@\Yes
  55. Session logging:@\Yes
  56. Debug logging:@\Yes
  57. Packet logging:@\Yes
  58. Act as server:@\Yes
  59. Talk to server:@\Yes
  60. Advanced server functions:@\Yes
  61. Local file management:@\Yes
  62. Command/Init files:@\Yes
  63. UUCP and multiuser line locking:@\Yes
  64. Long packets:@\Yes
  65. Sliding Windows:@\No
  66. File attributes packets:@\No
  67. Command macros:@\No
  68. Raw file transmit:@\No
  69. @end<format>
  70.  
  71. @i(All numbers in the C-Kermit documentation are decimal unless noted
  72. otherwise.)
  73.  
  74. @index(C-Kermit)@index(Unix Kermit)
  75. C-Kermit provides traditional Unix command line operation as well as
  76. interactive command prompting and execution.  The command line options
  77. provide access to a basic subset of C-Kermit's capabilities; the
  78. interactive command set is far richer.
  79.  
  80. On systems with dialout modems, C-Kermit's command file and login script
  81. facilities provide a counterpart to UUCP for file transfer with non-UNIX
  82. operating systems, including the use of scheduled (e.g@. late night) unattended
  83. operation.
  84.  
  85. @section(The Unix File System)
  86.  
  87. Consult your Unix manual for details about the file system under your version
  88. of Unix.  In general, Unix files have lowercase names, possibly
  89. containing one or more dots or other special characters.  Unix directories are
  90. tree-@|structured.  Directory levels are separated by slash (@qq[/])
  91. characters.  For example,
  92. @example(/usr/foo/bar)
  93. denotes the file @q(bar) in the directory @q(/usr/foo).  Alphabetic case is
  94. significant in Unix file and directory names, i.e. @qq<a> is a different file
  95. (or directory) from @qq<A>.  Wildcard or "meta" characters allow groups of
  96. files to be specified.  @qq(*) matches any string; @qq(?) matches any single
  97. character.
  98.  
  99. When C-Kermit is invoked with file arguments specified on the Unix command
  100. line, the Unix shell (Bourne Shell, C-Shell, K-Shell, etc) expands the meta
  101. characters itself, and in this case a wider variety is available.  For example,
  102. @example(kermit -s %/ck[uvm]*.{upd,bwr}]) is expanded by the Berkeley C-Shell
  103. into a list of all the files in the user's home directory (@q[%/]) that start
  104. with the characters "@q(ck)", followed by a single character @qq(u), @qq(v), or
  105. @qq(m), followed by zero or more characters, followed by a dot, followed by one
  106. of the strings @qq(upd) or @qq(bwr).  Internally, the C-Kermit program itself
  107. expands only the @qq(*) and @qq(?) meta characters.
  108.  
  109. Unix files are linear (sequential) streams of 8-bit bytes.  Text files consist
  110. of 7-bit ASCII characters, with the high-@|order bit off (0), and lines
  111. separated by the Unix newline character, which is linefeed (LF, ASCII 10).
  112. This distinguishes Unix text files from those on most other ASCII systems, in
  113. which lines are separated by a carriage-@|return linefeed sequence (CRLF, ASCII
  114. 13, followed by linefeed, ASCII 10).  Binary files are likely to contain data
  115. in the high bits of the file bytes, and have no particular line or record
  116. structure.
  117.  
  118. When transferring files, C-Kermit will convert between upper and lower
  119. case filenames and between LF and CRLF line terminators automatically,
  120. unless told to do otherwise.  When binary files must be transferred, the
  121. program must be instructed not to perform LF/CRLF conversion (@q[-i] on the
  122. command line or "set file type binary" interactively; see below).
  123.  
  124. @section(File Transfer)
  125.  
  126. If C-Kermit is in local mode, the screen (stdout) is continously updated to
  127. show the progress of the file transer.  A dot is printed for every four data
  128. packets, other packets are shown by type:
  129. @begin(description,leftmargin +6, indent -2, spread 0)
  130. I@\Exchange Parameter Information
  131.  
  132. R@\Receive Initiate
  133.  
  134. S@\Send Initiate
  135.  
  136. F@\File Header
  137.  
  138. G@\Generic Server Command
  139.  
  140. C@\Remote Host Command
  141.  
  142. N@\Negative Acknowledgement (NAK)
  143.  
  144. E@\Fatal Error
  145.  
  146. T@\Indicates a timeout occurred
  147.  
  148. Q@\Indicates a damaged, undesired, or illegal packet was received
  149.  
  150. @q<%>@\Indicates a packet was retransmitted
  151. @end(description)
  152. You may type certain "interrupt" commands during file transfer:
  153. @begin(description,leftmargin +16,indent -12,spread 0)
  154. Control-F:@\Interrupt the current File, and go on to the next (if any).
  155.  
  156. Control-B:@\Interrupt the entire Batch of files, terminate the transaction.
  157.  
  158. Control-R:@\Resend the current packet
  159.  
  160. Control-A:@\Display a status report for the current transaction.
  161. @end(description)
  162.  These interrupt characters differ from the ones used in other Kermit
  163. implementations to avoid conflict with commonly used Unix shell interrupt
  164. characters.  With Version 7, System III, and System V implementations of
  165. Unix, interrupt commands must be preceeded by the 'connect' escape character
  166. (e.g. normally-@q[\]).  Ctrl-F and Ctrl-B are effective only during the
  167. transfer of data (D) packets, and cannot be used to interrupt a transfer that
  168. has not yet reached that stage.
  169.  
  170. @begin(quotation)
  171. @i(CAUTION:)@index(Warning)@index<File Warning>
  172.  If Control-F or Control-B is used to cancel an incoming file,
  173. and a file of the same name previously existed, @i(and) the "file warning"
  174. feature is not enabled, then the previous copy of the file will disappear.
  175. @end(quotation)
  176.  
  177. @i(EMERGENCY EXIT:)@index<Emergency Exit>
  178.  When running Unix Kermit in remote mode, if you have started a protocol
  179. operation (sending or receiving a file, server command wait, etc), you will not
  180. be able to communicate with the terminal in the normal way.  In particular, you
  181. cannot stop the protocol by typing the normal Unix interrupt characters, since
  182. the terminal has been put in "raw mode".  If you need to regain control quickly
  183. -- for instance, because the protocol is stuck -- you can type two Control-C's
  184. directly to the Unix Kermit program ("connect" first if necessary):
  185. @display<Control-C Control-C>
  186. This will cause the program to exit and restore the terminal to normal.
  187.  
  188. @section(Command Line Operation)
  189.  
  190. The C-Kermit command line syntax conforms to the @ux(Proposed Syntax Standards
  191. for Unix System Commands) put forth by Kathy Hemenway and Helene Armitage of
  192. AT&T Bell Laboratories in @i(Unix/World), Vol.1, No.3, 1984.  The rules that
  193. apply are:
  194. @begin(itemize,spread 0)
  195. Command names must be between 2 and 9 characters ("kermit" is 6).
  196.  
  197. Command names must include lower case letters and digits only.
  198.  
  199. An option name is a single character.
  200.  
  201. Options are delimited by '@q(-)'.
  202.  
  203. Options with no arguments may be grouped (bundled) behind one delimiter.
  204.  
  205. Option-arguments cannot be optional.
  206.  
  207. Arguments immediately follow options, separated by whitespace.
  208.  
  209. The order of options does not matter.
  210.  
  211. '@q(-)' preceded and followed by whitespace means standard input.
  212. @end(itemize)
  213. A group of bundled options may end with an option that has an argument.
  214.  
  215. The following notation is used in command descriptions:
  216. @begin(description,leftmargin +8,indent -8)
  217. @i(fn)@\A Unix file specification, possibly containing the "wildcard"
  218. characters `@q[*]' or `@q[?]' (`@q[*]' matches all character strings, `@q[?]'
  219. matches any single character).
  220.  
  221. @i(fn1)@\A Unix file specification which may not contain `@q[*]' or `@q[?]'.
  222.  
  223. @i(rfn)@\A remote file specification in the remote system's own syntax, which
  224. may denote a single file or a group of files.
  225.  
  226. @i(rfn1)@\A remote file specification which should denote only a single file.
  227.  
  228. @i(n)@\A decimal number between 0 and 94.
  229.  
  230. @i(c)@\A decimal number between 0 and 127 representing the value of an
  231. ASCII character.
  232.  
  233. @i(cc)@\A decimal number between 0 and 31, or else exactly 127,
  234. representing the value of an ASCII control character.
  235.  
  236. @q([ ])@\Any field in square braces is optional.
  237.  
  238. @q({x,y,z})@\Alternatives are listed in curly braces.
  239. @end(description)
  240.  
  241. C-Kermit command line options may specify any combination of actions and
  242. settings.  If C-Kermit is invoked with a command line that specifies no
  243. actions, then it will issue a prompt and begin interactive dialog.  Action
  244. options specify either protocol transactions or terminal connection.
  245.  
  246. @begin<description,leftmargin +8,indent -8>
  247. @q(-s )@i(fn)@\Send the specified file or files.  If @i(fn) contains
  248. wildcard (meta) characters, the Unix shell expands it into a list.  If @i(fn)
  249. is '@q[-]' then kermit sends from standard input, which may
  250. come from a file:
  251. @example(kermit -s - < foo.bar)
  252. or a parallel process:
  253. @example(ls -l | grep christin | kermit -s -)
  254. You cannot use this mechanism to send
  255. terminal typein.  If you want to send a file whose actual name is @qq(-)
  256. you can precede it with a path name, as in
  257. @example(kermit -s ./-)
  258.  
  259. @q(-r)@\Receive a file or files.  Wait passively for files to arrive.
  260.  
  261. @q(-k)@\Receive (passively) a file or files, sending them to standard
  262. output.  This option can be used in several ways:
  263. @begin(description,leftmargin +4,indent -4)
  264. @q(kermit -k)@\Displays the incoming files on your screen; to be used only
  265. in "local mode" (see below).
  266.  
  267. @q(kermit -k > )@i(fn1)@\Sends the incoming file or files to the named file,
  268. @i(fn1).  If more than one file arrives, all are concatenated together
  269. into the single file @i(fn1).
  270.  
  271. @q(kermit -k | command)@\Pipes the incoming data (single or multiple
  272. files) to the indicated command, as in
  273. @example'kermit -k | sort > sorted.stuff'
  274. @end(description)
  275.  
  276. @q(-a )@i(fn1)@\If you have specified a file transfer option, you may give
  277. an alternate name for a single file with the @q(-a) ("as") option.  For
  278. example,
  279. @example'kermit -s foo -a bar'
  280. sends the file @q(foo) telling the receiver that its name is @q(bar).
  281. If more than one file arrives or is sent, only the first file is
  282. affected by the @q(-a) option:
  283. @example'kermit -ra baz'
  284. stores the first incoming file under the name @q(baz).
  285.  
  286. @q(-x)@\Begin server operation.  May be used in either local or remote mode.
  287. @end(description)
  288.  
  289. Before proceeding, a few words about remote and local operation are
  290. necessary.  C-Kermit is "local" if it is running on PC or workstation that
  291. you are using directly, or if it is running on a multiuser system and
  292. transferring files over an external communication line -- not your job's
  293. controlling terminal or console.  C-Kermit is remote if it is running on a
  294. multiuser system and transferring files over its own controlling terminal's
  295. communication line (normally @q</dev/tty>), connected to your PC or
  296. workstation.
  297.  
  298. If you are running C-Kermit on a PC, it is normally used in local mode,
  299. with the "back port" designated for file transfer and terminal connection.
  300. If you are running C-Kermit on a multiuser (timesharing) system, it is
  301. in remote mode unless you explicitly point it at an external line for
  302. file transfer or terminal connection.  The following command sets
  303. C-Kermit's "mode":
  304.  
  305. @begin(description,leftmargin +8,indent -8)
  306. @q(-l )@i(dev)@\Line  -- Specify a terminal line to use for file
  307. transfer and terminal connection, as in
  308. @example'kermit -l /dev/ttyi5'
  309. @end(description)
  310.  
  311. When an external line is being used, you will also need some additional
  312. options for successful communication with the remote system:
  313.  
  314. @begin(description,leftmargin +8,indent -8)
  315. @q(-b )@i(n)@\Baud  -- Specify the baud rate for the line given in the
  316. @q(-l) option, as in
  317. @example'kermit -l /dev/ttyi5 -b 9600'
  318. This option should always be included with the @q(-l) option, since the
  319. speed of an external line is not necessarily what you expect.
  320.  
  321. @q(-p )@i(x)@\Parity -- e,o,m,s,n (even, odd, mark, space, or none).  If parity
  322. is other than none, then the 8th-bit prefixing mechanism will be
  323. used for transferring 8-bit binary data, provided the opposite
  324. Kermit agrees.  The default parity is none.
  325.  
  326. @q(-t)@\Specifies half duplex, line turnaround with XON as the handshake
  327. character.
  328. @end(description)
  329.  
  330. The following commands may be used only with a C-Kermit which is local
  331. either by default or else because the @q<-l> option has been specified.
  332.  
  333. @begin(description,leftmargin +8,indent -8)
  334. @q(-g )@i(rfn)@\Actively request a remote server to send the named file
  335. or files; @i(rfn) is a file specification in the remote host's own syntax.  If
  336. @i(fn) happens to contain any special shell characters, like space, '@q(*)',
  337. '@q([)', etc, these must be quoted, as in
  338. @example'kermit -g x\*.\?'
  339. or
  340. @example'kermit -g "profile exec"'
  341.  
  342. @q(-f)@\Send a 'finish' command to a remote server.
  343.  
  344. @q(-c)@\Establish a terminal connection over the specified or default
  345. communication line, before any protocol transaction takes place.
  346. Get back to the local system by typing the escape character
  347. (normally Control-Backslash) followed by the letter 'c'.
  348.  
  349. @q(-n)@\Like @q(-c), but @i(after) a protocol transaction takes place;
  350. @q(-c) and @q(-n) may both be used in the same command.  The use of @q(-n)
  351. and @q(-c) is illustrated below.
  352. @end(description)
  353. If the other Kermit is on a remote system, the @q(-l) and @q(-b) options should
  354. also be included with the @q(-r), @q(-k), or @q(-s) options.
  355.  
  356. Several other command-line options are provided:
  357. @begin(description,leftmargin +8,indent -8)
  358. @q(-i)@\Specifies that files should be sent or received exactly "as is" with no
  359. conversions.  This option is necessary for transmitting binary files.  It may
  360. also be used in Unix-to-Unix transfers (it must be given to @i<both> Unix
  361. Kermit programs), where it will improve performance by circumventing the normal
  362. text-file conversions, and will allow mixture of text and binary files in a
  363. single file group.
  364.  
  365. @q(-w)@\Write-Protect -- Avoid filename collisions for incoming files.
  366.  
  367. @q(-e @i<n>)@\Extended packet length -- Specify that C-Kermit is allowed to
  368. receive packets up to length @i<n>, where @i<n> may be between 10 and some
  369. large number, like 1000, depending on the system.  The default maximum length
  370. for received packets is 90.  Packets longer than 94 will be used only if the
  371. other Kermit supports, and agrees to use, the "long packet" protocol extension.
  372.  
  373. @q(-q)@\Quiet -- Suppress screen update during file transfer, for instance
  374. to allow a file transfer to proceed in the background.
  375.  
  376. @q(-d)@\Debug -- Record debugging information in the file @q(debug.log) in
  377. the current directory.  Use this option if you believe the program
  378. is misbehaving, and show the resulting log to your local
  379. Kermit maintainer.
  380.  
  381. @q(-h)@\Help -- Display a brief synopsis of the command line options.
  382. @end(description)
  383. The command line may contain no more than one protocol action option.
  384.  
  385. Files are sent with their own names, except that lowercase letters are raised
  386. to upper, pathnames are stripped off, certain special characters like (`@q[%]')
  387. and (`@q[#]') are changed to `@q(X)', and if the file name begins with a
  388. period, an `@q(X)' is inserted before it.  Incoming files are stored under
  389. their own names except that uppercase letters are lowered, and, if @q(-w) was
  390. specified, a "generation number" is appended to the name if it has the same
  391. name as an existing file which would otherwise be overwritten.  If the @q(-a)
  392. option is included, then the same rules apply to its argument.  The file
  393. transfer display shows any transformations performed upon filenames.
  394.  
  395. During transmission, files are encoded as follows:
  396. @begin(itemize)
  397. Control characters are converted to prefixed printables.
  398.  
  399. Sequences of repeated characters are collapsed via repeat counts, if
  400. the other Kermit is also capable of repeated-@|character compression.
  401.  
  402. If parity is being used on the communication line, data characters with
  403. the 8th (parity) bit on are specially prefixed, provided the other Kermit
  404. is capable of 8th-bit prefixing; if not, 8-bit binary files cannot be
  405. successfully transferred.
  406.  
  407. Conversion is done between Unix newlines and carriage-@|return-@|linefeed
  408. sequences unless the @q(-i) option was specified.
  409. @end(itemize)
  410.  
  411. @subheading(Command Line Examples:)
  412.  
  413. @exx(kermit -l /dev/ttyi5 -b 1200 -cn -r)
  414. This command connects you to the system on the other end of @q(ttyi5) at
  415. 1200 baud, where you presumably log in and run Kermit with a 'send'
  416. command.  After you escape back, C-Kermit waits for a file (or files) to
  417. arrive.  When the file transfer is completed, you are reconnected to
  418. the remote system so that you can logout.
  419.  
  420. @exx(kermit -l /dev/ttyi4 -b 1800 -cntp m -r -a foo)
  421. This command is like the preceding one, except the remote system in this
  422. case uses half duplex communication with mark parity.  The first file
  423. that arrives is stored under the name @q(foo).
  424.  
  425. @exx(kermit -l /dev/ttyi6 -b 9600 -c | tek)
  426. This example uses Kermit to connect your terminal to the system at the
  427. other end of @q(ttyi6).  The C-Kermit terminal connection does not
  428. provide any particular terminal emulation, so C-Kermit's standard i/o is
  429. piped through a (hypothetical) program called tek, which performs (say)
  430. Tektronix emulation.
  431.  
  432. @exx(kermit -l /dev/ttyi6 -b 9600 -nf)
  433. This command would be used to shut down a remote server and then connect
  434. to the remote system, in order to log out or to make further use of it.
  435. The @q(-n) option is invoked @i(after) @q(-f) (@q[-c] would have been invoked
  436. before).
  437.  
  438. @exx(kermit -l /dev/ttyi6 -b 9600 -qg foo.\* &)
  439. This command causes C-Kermit to be invoked in the background, getting a group
  440. of files from a remote server (note the quoting of the `@q[*]' character).  No
  441. display occurs on the screen, and the keyboard is not sampled for
  442. interruption commands.  This allows other work to be done while file
  443. transfers proceed in the background.
  444.  
  445. @exx(kermit -l /dev/ttyi6 -b 9600 -g foo.\* > foo.log < /dev/null &)
  446. This command is like the previous one, except the file transfer display has
  447. been redirected to the file @q(foo.log).  Standard input is also redirected, to
  448. prevent C-Kermit from sampling it for interruption commands.
  449.  
  450. @exx(kermit -iwx)
  451. This command starts up C-Kermit as a server.  Files are transmitted with no
  452. newline/@|carriage-@|return-@|linefeed conversion; the @q(-i) option is
  453. necessary for binary file transfer and recommended for Unix-@|to-@|Unix
  454. transfers.  Incoming files that have the same names as existing files are given
  455. new, unique names.
  456.  
  457. @exx(kermit -l /dev/ttyi6 -b 9600)
  458. This command sets the communication line and speed.  Since no action is
  459. specified, C-Kermit issues a prompt and enters an interactive dialog with
  460. you.  Any settings given on the command line remain in force during the
  461. dialog, unless explicitly changed.
  462.  
  463. @exx(kermit)
  464. This command starts up Kermit interactively with all default settings.
  465.  
  466. The next example shows how Unix Kermit might be used to send an entire
  467. directory tree from one Unix system to another, using the tar program as
  468. Kermit's standard input and output.  On the orginating system, in this case the
  469. remote, type (for instance):@label(-uxtar)
  470.  
  471. @exx(tar cf - /usr/fdc | kermit -is -)
  472. This causes tar to send the directory @q(/usr/fdc) (and all its files and all
  473. its subdirectories and all their files...) to standard output instead of to a
  474. tape; kermit receives this as standard input and sends it as a binary file.
  475. On the receiving system, in this case the local one, type (for instance):
  476.  
  477. @exx(kermit -il /dev/ttyi5 -b 9600 -k | tar xf -)
  478. Kermit receives the tar archive, and sends it via standard output to its own
  479. copy of tar, which extracts from it a replica of the original directory tree.
  480.  
  481. A final example shows how a Unix compression utility might be used to speed
  482. up Kermit file transfers:
  483. @begin(example)
  484. compress file | kermit -is -     (@i(sender))
  485. kermit -ik | uncompress          (@i(receiver))
  486. @end(example)
  487.  
  488. @subheading(Exit Status Codes:)
  489.  
  490. Unix Kermit returns an exit status of zero, except when a fatal error is
  491. encountered, where the exit status is set to one.  With background
  492. operation (e.g., `@q(&)' at end of invoking command line) driven by scripted
  493. interactive commands (redirected standard input and/or take files),
  494. any failed interactive command (such as failed dial or script attempt)
  495. causes the fatal error exit.
  496.  
  497. @section(Interactive Operation)
  498.  
  499. C-Kermit's interactive command prompt is "@q(C-Kermit>)".  In response to this
  500. prompt, you may type any valid interactive C-Kermit command.  C-Kermit executes
  501. the command and then prompts you for another command.  The process continues
  502. until you instruct the program to terminate.
  503.  
  504. Commands begin with a keyword, normally an English verb, such as "send".  You
  505. may omit trailing characters from any keyword, so long as you specify
  506. sufficient characters to distinguish it from any other keyword valid in that
  507. field.  Certain commonly-@|used keywords (such as "send", "receive", "connect")
  508. also have special non-@|unique abbreviations ("s" for "send", "r" for
  509. "receive", "c" for "connect").
  510.  
  511. Certain characters have special functions during typein of interactive
  512. commands:
  513. @Begin(Description,leftmargin +8,indent -4)
  514. @q(?)@\Question mark, typed at any point in a command, will produce a
  515. message explaining what is possible or expected at that point.  Depending on
  516. the context, the message may be a brief phrase, a menu of keywords, or a list
  517. of files.
  518.  
  519. @q(ESC)@\(The Escape or Altmode key) -- Request completion of the current
  520. keyword or filename, or insertion of a default value.  The result will be a
  521. beep if the requested operation fails.
  522.  
  523. @q(DEL)@\(The Delete or Rubout key) -- Delete the previous character from the
  524. command.  You may also use BS (Backspace, Control-H) for this function.
  525.  
  526. @q(^W)@\(Control-W) -- Erase the rightmost word from the command line.
  527.  
  528. @q(^U)@\(Control-U) -- Erase the entire command.
  529.  
  530. @q(^R)@\(Control-R) -- Redisplay the current command.
  531.  
  532. @q(SP)@\(Space) -- Delimits fields (keywords, filenames, numbers) within
  533. a command.  HT (Horizontal Tab) may also be used for this purpose.
  534.  
  535. @q(CR)@\(Carriage Return) -- Enters the command for execution.  LF (Linefeed)
  536. or FF (formfeed) may also be used for this purpose.
  537.  
  538. @q(\)@\(Backslash) -- Enter any of the above characters into the command,
  539. literally.  To enter a backslash, type two backslashes in a row (@q[\\]).
  540. A backslash at the end of a command line causes the next line to be treated
  541. as a continuation line; this is useful for readability in command files,
  542. especially in the 'script' command.
  543.  
  544. @q(^Z)@\(Control-Z) -- On systems (like Berkeley Unix, Ultrix) with job
  545. control, suspend Kermit, i.e. put it into the @index<Background> background in
  546. such a way that it can be brought back into the foreground (e.g. with an
  547. '@q<fg>' shell command) with all its settings intact.
  548. @End(Description)
  549. You may type the editing characters (@q[DEL], @q[^W], etc) repeatedly, to
  550. delete all the way back to the prompt.  No action will be performed until the
  551. command is entered by typing carriage return, linefeed, or formfeed.  If you
  552. make any mistakes, you will receive an informative error message and a new
  553. prompt -- make liberal use of `@q[?]' and ESC to feel your way through the
  554. commands.  One important command is "help" -- you should use it the first time
  555. you run C-Kermit.
  556.  
  557. A command line beginning with a percent sign @qq(%) is ignored.  Such
  558. lines may be used to include illustrative commentary in Kermit command dialogs.
  559.  
  560. Interactive C-Kermit accepts commands from files as well as from the keyboard.
  561. When you start C-Kermit, the program looks for the file @q(.kermrc) in your
  562. home or current directory (first it looks in the home directory, then in the
  563. current one) and executes any commands it finds there.  These commands must be
  564. in interactive format, not Unix command-@|line format.  A "take" command is
  565. also provided for use at any time during an interactive session, to allow
  566. interactive-format commands to be executed from a file; command files may be
  567. nested to any reasonable depth.
  568.  
  569. Here is a brief list of C-Kermit interactive commands:
  570. @begin(format,spread 0)
  571. @tabclear()@tabset(1.5inches,2.0inches,2.5inches)
  572. @>%@\  Comment
  573. @>!@\  Execute a Unix shell command, or start a shell.
  574. @>bye@\  Terminate and log out a remote Kermit server.
  575. @>close@\  Close a log file.
  576. @>connect@\  Establish a terminal connection to a remote system.
  577. @>cwd@\  Change Working Directory.
  578. @>dial@\  Dial a telephone number.
  579. @>directory@\  Display a directory listing.
  580. @>echo@\  Display arguments literally.
  581. @>exit@\  Exit from the program, closing any open files.
  582. @>finish@\  Instruct a remote Kermit server to exit, but not log out.
  583. @>get@\  Get files from a remote Kermit server.
  584. @>help@\  Display a help message for a given command.
  585. @>log@\  Open a log file -- debugging, packet, session, transaction.
  586. @>quit@\  Same as 'exit'.
  587. @>receive@\  Passively wait for files to arrive.
  588. @>remote@\  Issue file management commands to a remote Kermit server.
  589. @>script@\  Execute a login script with a remote system.
  590. @>send@\  Send files.
  591. @>server@\  Begin server operation.
  592. @>set@\  Set various parameters.
  593. @>show@\  Display values of 'set' parameters.
  594. @>space@\  Display current disk space usage.
  595. @>statistics@\  Display statistics about most recent transaction.
  596. @>take@\  Execute commands from a file.
  597. @end(format)
  598.  
  599. The 'set' parameters are:
  600. @begin(format,spread 0)
  601. @tabclear()@tabset(1.5inches,2.0inches,2.5inches)
  602. @>block-check@\  Level of packet error detection.
  603. @>delay@\  How long to wait before sending first packet.
  604. @>duplex@\  Specify which side echoes during 'connect'.
  605. @>escape-character@\  Prefix for "escape commands" during 'connect'.
  606. @>file@\  Set various file parameters.
  607. @>flow-control@\  Communication line full-duplex flow control.
  608. @>handshake@\  Communication line half-duplex turnaround character.
  609. @>incomplete@\  Disposition for incompletely received files.
  610. @>line@\  Communication line device name.
  611. @>modem-dialer@\  Type of modem-dialer on communication line.
  612. @>parity@\  Communication line character parity.
  613. @>prompt@\  The C-Kermit program's interactive command prompt.
  614. @>receive@\  Parameters for inbound packets.
  615. @>retry@\  Packet retransmission limit.
  616. @>send@\  Parameters for outbound packets.
  617. @>speed@\  Communication line speed.
  618. @>terminal@\  Terminal parameters.
  619. @end(format)
  620.  
  621. The 'remote' commands are:
  622. @begin(format,spread 0)
  623. @tabclear()@tabset(1.5inches,2.0inches,2.5inches)
  624. @>cwd@\  Change remote working directory.
  625. @>delete@\  Delete remote files.
  626. @>directory@\  Display a listing of remote file names.
  627. @>help@\  Request help from a remote server.
  628. @>host@\  A command to the remote host in its own command language.
  629. @>space@\  Display current disk space usage on remote system.
  630. @>type@\  Display a remote file on your screen.
  631. @>who@\  Display who's logged in, or get information about a user.
  632. @end(format)
  633.  
  634. Most of these commands are described adequately in the Kermit User Guide or the
  635. Kermit book.  Special aspects of certain Unix Kermit commands are described
  636. below.
  637.  
  638. @heading<The 'send' command>
  639.  
  640. Syntax:  @q<send >@i(fn)@q<@ @ - >@i<or>@q< -@ @ >@q<send >@i(fn1)@q< >@i<rfn1>
  641.  
  642. Send the file or files denoted by @i(fn) to the other Kermit, which should be
  643. running as a server, or which should be given the 'receive' command.  Each file
  644. is sent under its own name (as described above, or as specified by the 'set
  645. file names' command).  If the second form of the 'send' command is used, i.e.
  646. with @i(fn1) denoting a single Unix file, @i(rfn1) may be specified as a name
  647. to send it under.  The 'send' command may be abbreviated to 's', even though
  648. 's' is not a unique abbreviation for a top-level C-Kermit command.
  649.  
  650. The wildcard (meta) characters `@q[*]' and `@q[?]' are accepted in @i(fn).  If
  651. `@q[?]' is to be included, it must be prefixed by `@q[\]' to override its
  652. normal function of providing help.  `@q[*]' matches any string, `@q[?]' matches
  653. any single character.  Other notations for file groups, like `@q([a-z]og)', are
  654. not available in interactive commands (though of course they are available on
  655. the command line).  When @i(fn) contains `@q[*]' or `@q[?]' characters, there
  656. is a limit to the number of files that can be matched, which varies from system
  657. to system.  If you get the message "Too many files match" then you'll have to
  658. make a more judicious selection.  If @i(fn) was of the form
  659. @example(usr/longname/anotherlongname/*)
  660. then C-Kermit's string space will fill up rapidly -- try doing a cwd (see
  661. below) to the path in question and reissuing the command.
  662.  
  663. @i<Note> -- C-Kermit sends only from the current or specified directory.  It
  664. does not traverse directory trees.  If the source directory contains
  665. subdirectories, they will be skipped.  By the same token, C-Kermit does not
  666. create directories when receiving files.  If you have a need to do this, you
  667. can pipe tar through C-Kermit, as shown in the example on page
  668. @pageref(-uxtar), or under System III/V Unix you can use cpio.
  669.  
  670. @i<Another Note> -- The 'send' command does not skip over "invisible" files
  671. that match the file specification; Unix systems usually treat files whose names
  672. start with a dot (like @q(.login), @q(.cshrc), and @q(.kermrc)) as invisible.
  673. Similarly for "temporary" files whose names start with "@q(#)".
  674.  
  675. @heading<The 'receive' command>
  676.  
  677. Syntax:  @q<receive@ @ - >@i<or>@q< -@ @ receive >@i<fn1>
  678.  
  679. Passively wait for files to arrive from the other Kermit, which must be given
  680. the 'send' command -- the 'receive' command does not work in conjunction with a
  681. server (use 'get' for that).  If @i(fn1) is specified, store the first incoming
  682. file under that name.  The 'receive' command may be abbreviated to 'r'.
  683.  
  684.  
  685. @heading<The 'get' command:>
  686.  
  687. Syntax:@q<  get >@i<rfn>
  688. @begin(example)
  689.     @i<or>: get
  690.             @i(rfn)
  691.             @i(fn1)
  692. @end(example)
  693. Request a remote Kermit server to send the named file or files.  Since a
  694. remote file specification (or list) might contain spaces, which normally
  695. delimit fields of a C-Kermit command, an alternate form of the command is
  696. provided to allow the inbound file to be given a new name: type 'get' alone
  697. on a line, and you will be prompted separately for the remote and local
  698. file specifications, for example
  699. @Begin(Example)
  700. C-Kermit>@ux(get)
  701.  Remote file specification: @ux(profile exec)
  702.  Local name to store it under: @ux(profile.exec)
  703. @End(Example)
  704. As with 'receive', if more than one file arrives as a result of the 'get'
  705. command, only the first will be stored under the alternate name given by
  706. @i(fn1); the remaining files will be stored under their own names if possible.
  707. If a `@q[?]' is to be included in the remote file specification, you must
  708. prefix it with `@q[\]' to suppress its normal function of providing help.
  709.  
  710. If you have started a multiline 'get' command, you may escape from its
  711. lower-@|level prompts by typing a carriage return in response to the prompt,
  712. e.g.
  713. @Begin(Example)
  714. C-Kermit>@ux(get)
  715.  Remote file specification: @ux(foo)
  716.  Local name to store it under: @i<(Type a carriage return here)>
  717. (cancelled)
  718. C-Kermit>
  719. @End(Example)
  720.  
  721. @heading(The 'server' command:)
  722.  
  723. The 'server' command places C-Kermit in "server mode" on the currently selected
  724. communication line.  All further commands must arrive as valid Kermit packets
  725. from the Kermit on the other end of the line.  The Unix Kermit server can
  726. respond to the following commands:
  727. @begin(format,spread 0,above 1,below 1)
  728. @tabclear()@tabset(2.25inches)
  729. @u<Command>@\@ux<Server Response>
  730.   get@\  Sends files
  731.   send@\  Receives files
  732.   bye@\  Attempts to log itself out
  733.   finish@\  Exits to level from which it was invoked
  734.   remote directory@\  Sends directory lising
  735.   remote delete@\  Removes files
  736.   remote cwd@\  Changes working directory
  737.   remote type@\  Sends files to your screen
  738.   remote space@\  Reports about its disk usage
  739.   remote who@\  Shows who's logged in
  740.   remote host@\  Executes a Unix shell command
  741.   remote help@\  Lists these capabilities
  742. @end(format)
  743. The Unix Kermit server cannot always respond properly to a BYE command.
  744. It will attempt to do so using "@q<kill()>", but this will not work
  745. on all systems or under all conditions because of the complicated process
  746. structures that can be set up under Unix.
  747.  
  748. If the Kermit server is directed at an external line (i.e. it is in "local
  749. mode") then the console may be used for other work if you have 'set file
  750. display off'; normally the program expects the console to be used to observe
  751. file transfers and enter status queries or interruption commands.  The way to
  752. get C-Kermit into background@index<Background> operation from interactive
  753. command level varies from system to system (e.g. on Berkeley Unix you would
  754. halt the program with @q(^Z) and then use the C-Shell 'bg' command to continue
  755. it in the background).  The more common method is to invoke the program with
  756. the desired command line arguments, including "@q(-q)", and with a terminating
  757. "@q(&)".
  758.  
  759. When the Unix Kermit server is given a 'remote host' command, it executes it
  760. using the shell invoked upon login, e.g. the Bourne shell or the Berkeley
  761. C-Shell.
  762.  
  763. @Heading(The 'remote', 'bye', and 'finish' commands:)
  764.  
  765. C-Kermit may itself request services from a remote Kermit server.  In
  766. addition to 'send' and 'get', the following commands may also be sent from
  767. C-Kermit to a Kermit server:
  768.  
  769. @begin(description,leftmargin +8,indent -4)
  770. remote cwd [@i(directory)]@\If the optional remote directory specification is
  771. included, you will be prompted on a separate line for a password, which will
  772. not echo as you type it.  If the remote system does not require a password
  773. for this operation, just type a carriage return.
  774. @end(description)
  775. @begin(description,leftmargin +28, indent -24,spread 0,above 1)
  776. remote delete rfn@\delete remote file or files.
  777.  
  778. remote directory [@i(rfn)]@\directory listing of remote files.
  779.  
  780. remote host @i(command)@\command in remote host's own command language.
  781.  
  782. remote space@\disk usage report from remote host.
  783.  
  784. remote type [@i(rfn)]@\display remote file or files on the screen.
  785.  
  786. remote who [@i(user)]@\display information about who's logged in.
  787.  
  788. remote help@\display remote server's capabilities.
  789. @end(description)
  790. @begin(description,leftmargin +8,indent -4)
  791. bye @i(and) finish:@\When connected to a remote Kermit server, these commands
  792. cause the remote server to terminate; 'finish' returns it to Kermit or system
  793. command level (depending on the implementation or how the program was invoked);
  794. 'bye' also requests it to log itself out.
  795. @end(description)
  796. @heading(The 'log' and 'close' commands:)
  797.  
  798. Syntax: @q<log {debugging, packets, session, transactions} >[ @i(fn1) ]
  799.  
  800. C-Kermit's progress may be logged in various ways.  The 'log' command
  801. opens a log, the 'close' command closes it.  In addition, all open logs
  802. are closed by the 'exit' and 'quit' commands.  A name may be specified for
  803. a log file; if the name is omitted, the file is created with a default
  804. name as shown below.
  805.  
  806. @begin(description,leftmargin +4,indent -4)
  807. log debugging@\This produces a voluminous log of the internal workings of
  808. C-Kermit, of use to Kermit developers or maintainers in tracking down suspected
  809. bugs in the C-Kermit program.  Use of this feature dramatically slows down the
  810. Kermit protocol.  Default name: @q(debug.log).
  811.  
  812. log packets@\This produces a record of all the packets that go in and out of
  813. the communication port.  This log is of use to Kermit maintainers who are
  814. tracking down protocol problems in either C-Kermit or any Kermit that
  815. C-Kermit is connected to.  Default name:  @q(packet.log).
  816.  
  817. log session@\This log will contain a copy of everything you see on your screen
  818. during the 'connect' command, except for local messages or interaction with
  819. local escape commands.  Default name:  @q(session.log).
  820.  
  821. log transactions@\The transaction log is a record of all the files that were
  822. sent or received while transaction logging was in effect.  It includes time
  823. stamps and statistics, filename transformations, and records of any
  824. errors that may have occurred.  The transaction log allows you to have
  825. long unattended file transfer sessions without fear of missing some
  826. vital screen message.  Default name:  @q(transact.log).
  827. @end(description)
  828. The 'close' command explicitly closes a log, e.g. 'close debug'.
  829.  
  830. @i<Note:>  Debug and Transaction logs are a compile-time option; C-Kermit may
  831. be compiled without these logs, in which case it will run faster, it will
  832. take up less space on the disk, and the commands relating to them will not
  833. be present.
  834.  
  835. @Heading(Local File Management Commands:)
  836.  
  837. Unix Kermit allows some degree of local file management from interactive
  838. command level:
  839. @begin(description,leftmargin +4,indent -4)
  840. directory [@i(fn)]@\
  841. Displays a listing of the names, modes, sizes, and dates of files
  842. matching @i(fn) (which defaults to `@q[*]').  Equivalent to `@q(ls -l)'.
  843.  
  844. cwd [directory-name]@\
  845. Changes Kermit's working directory to the one given, or to the
  846. default directory if the directory name is omitted.  This command affects only
  847. the Kermit process and any processes it may subsequently create.
  848.  
  849. space@\
  850. Display information about disk space and/or quota in the current
  851. directory and device.
  852.  
  853. @q(! )[@i(command)]@\
  854. The command is executed by the Unix shell.  If no command is specified, then an
  855. interactive shell is started; exiting from the shell, e.g. by typing Control-D
  856. or 'exit', will return you to C-Kermit command level.  Use the `@q(!)' command
  857. to provide file management or other functions not explicitly provided by
  858. C-Kermit commands.  The `@q(!)' command has certain peculiarities:
  859. @begin(itemize,spread 0)
  860. C-Kermit attempts to use your preferred, customary (login) shell.
  861.  
  862. At least one space must separate the '!' from the shell command.
  863.  
  864. A 'cd' (change directory) command executed in this manner will have no effect
  865. -- use the C-Kermit 'cwd' command instead.
  866. @end(itemize)
  867. @end(description)
  868.  
  869. @heading(The 'set' and 'show' Commands:)
  870.  
  871. Since Kermit is designed to allow diverse systems to communicate, it is
  872. often necessary to issue special instructions to allow the program to adapt
  873. to peculiarities of the another system or the communication path.  These
  874. instructions are accomplished by the 'set' command.  The 'show' command may
  875. be used to display current settings.  Here is a brief synopsis of settings
  876. available in the current release of C-Kermit:
  877.  
  878. @begin(description,leftmargin +4,indent -4)
  879. block-check {1, 2, 3}@\ Determines the level of per-packet error detection.
  880. "1" is a single-@|character 6-bit checksum, folded to include the values of all
  881. bits from each character.  "2" is a 2-character, 12-bit checksum.  "3" is a
  882. 3-character, 16-bit cyclic redundancy check (CRC).  The higher the block check,
  883. the better the error detection and correction and the higher the resulting
  884. overhead.  Type 1 is most commonly used; it is supported by all Kermit
  885. implementations, and it has proven adequate in most circumstances.  Types 2 or
  886. 3 would be used to advantage when transferring 8-bit binary files over noisy
  887. lines.
  888.  
  889. delay @i(n)@\How many seconds to wait before sending the first packet after a
  890. 'send' command.  Used in remote mode to give you time to escape back to your
  891. local Kermit and issue a 'receive' command.  Normally 5 seconds.
  892.  
  893. duplex {full, half}@\For use during 'connect'.  Specifies which side is doing
  894. the echoing; 'full' means the other side, 'half' means C-Kermit must echo
  895. typein itself.
  896.  
  897. escape-character @i(cc)@\For use during 'connect' to get C-Kermit's attention.
  898. The escape character acts as a prefix to an 'escape command', for instance to
  899. close the connection and return to C-Kermit or Unix command level.
  900. The normal escape character is Control-Backslash (28).
  901. The escape character is also used in System III/V implementations
  902. to prefix interrupt commands during file transfers.
  903.  
  904. file {display, names, type, warning}@\
  905. Establish various file-related parameters:
  906. @begin(description,leftmargin +4,indent -4)
  907. display {on, off}@\Normally 'on'; when in local mode, display progress of file
  908. transfers on the screen (stdout), and listen to the keyboard (stdin)
  909. for interruptions.  If off (-q on command line) none of this is
  910. done, and the file transfer may proceed in the background oblivious
  911. to any other work concurrently done at the console terminal.
  912.  
  913. names {converted, literal}@\
  914. Normally converted, which means that outbound filenames have path
  915. specifications stripped, lowercase letters raised to upper,
  916. tildes and extra periods changed to X's, and an X inserted in
  917. front of any name that starts with period.  Incoming files have
  918. uppercase letters lowered.  Literal means that none of these
  919. conversions are done; therefore, any directory path appearing in a
  920. received file specification must exist and be write-accessible.
  921. When literal naming is being used, the sender should not use path
  922. names in the file specification unless the same path exists on the
  923. target system and is writable.
  924.  
  925. @begin<multiple>
  926. type {binary, text} [{7, 8}]@\The file type is normally text, which means that
  927. conversion is done between Unix newline characters and the
  928. carriage-@|return/@|linefeed sequences required by the canonical Kermit file
  929. transmission format, and in common use on non-@|Unix systems.  Binary means to
  930. transmit file contents without conversion.  Binary (`@q(-i)' in command line
  931. notation) is necessary for binary files, and desirable in all Unix-@|to-@|Unix
  932. transactions to cut down on overhead.
  933.  
  934. The optional trailing parameter tells the bytesize for file transfer.  It is
  935. 8 by default.  If you specify 7, the high order bit will be stripped from each
  936. byte of sent and received files.  This is useful for transferring text files
  937. that may have extraneous high order bits set in their disk representation (e.g.
  938. Wordstar or similar word processor files).
  939. @end<multiple>
  940.  
  941. warning {on, off}@\Normally off, which means that incoming files will silently
  942. overwrite existing files of the same name.  When on (`@q(-w)' on command line)
  943. Kermit will check if an arriving file would overwrite an existing file; if so,
  944. it will construct a new name for the arriving file, of the form @q(foo%)@i(n),
  945. where foo is the name they share and @i(n) is a "generation number"; if @i(foo)
  946. exists, then the new file will be called @q(foo%1).  If @q(foo) and @q(foo%1)
  947. exist, the new file will be @q(foo%2), and so on.  If the new name would be
  948. longer than the maximum length for a filename, then characters would be deleted
  949. from the end first, for instance, @q(thelongestname) on a system with a limit
  950. of 14 characters would become @q(thelongestn%1).
  951. @begin(quotation)
  952. @i(CAUTION:)  If Control-F or Control-B is used to cancel an incoming file,
  953. and a file of the same name previously existed, @i(and) the "file warning"
  954. feature is not enabled, then the previous copy of the file will disappear.
  955. @end(quotation)
  956. @end(description)
  957.  
  958. flow-control {none, xon/xoff}@\Normally xon/xoff for full duplex flow control.
  959. Should be set to 'none' if the other system cannot do xon/xoff flow control, or
  960. if you have issued a 'set handshake' command.  If set to xon/xoff, then
  961. handshake should be set to none.  This setting applies during both terminal
  962. connection and file transfer.  @i<Warning:> This command may have no effect
  963. on certain Unix systems, where Kermit puts the communication line into
  964. 'rawmode', and rawmode precludes flow control.
  965.  
  966. incomplete {discard, keep}@\Disposition for incompletely received files.
  967. If an incoming file is interrupted or an error occurs during transfer,
  968. the part that was received so far is normally discarded.  If you "set
  969. incomplete keep" then such file fragments will be kept.
  970.  
  971. handshake {xon, xoff, cr, lf, bell, esc, none}@\Normally none.  Otherwise,
  972. half-duplex communication line turnaround handshaking is done, which means Unix
  973. Kermit will not reply to a packet until it has received the indicated handshake
  974. character or has timed out waiting for it; the handshake setting applies only
  975. during file transfer.  If you set handshake to other than none, then flow
  976. should be set to none.
  977.  
  978. line [device-name]@\
  979. The device name for the communication line to be used for file transfer and
  980. terminal connection, e.g. @q(/dev/ttyi3).  If you specify a device name,
  981. Kermit will be in local mode, and you should remember to issue any other
  982. necessary 'set' commands, such as 'set speed'.  If you omit the device name,
  983. Kermit will revert to its default mode of operation.  If you specify
  984. @q(/dev/tty), Kermit will enter remote mode (useful when logged in through
  985. the "back port" of a system normally used as a local-mode workstation).  When
  986. Unix Kermit enters local mode, it attempts to synchronize with other programs
  987. (like uucp) that use external communication lines so as to prevent two
  988. programs using the same line at once; before attempting to lock the specified
  989. line, it will close and unlock any external line that was previously in use.
  990. The method used for locking is the "uucp lock file", explained in more detail
  991. later.
  992.  
  993. modem-dialer {direct, hayes, racalvadic, ventel, ...}@\ The type of modem
  994. dialer on the communication line.  "Direct" indicates either there is no
  995. dialout modem, or that if the line requires carrier detection to open, then
  996. 'set line' will hang waiting for an incoming call.  "Hayes", "Ventel", and the
  997. others indicate that 'set line' (or the -l argument) will prepare for a
  998. subsequent 'dial' command for the given dialer.  Support for new dialers is
  999. added from time to time, so type 'set modem ?' for a list of those supported
  1000. in your copy of Kermit.  See the description of the 'dial' command
  1001.  
  1002. parity {even, odd, mark, space, none}@\Specify character parity for use in
  1003. packets and terminal connection, normally none.  If other than none, C-Kermit
  1004. will seek to use the 8th-bit prefixing mechanism for transferring 8-bit binary
  1005. data, which can be used successfully only if the other Kermit agrees; if not,
  1006. 8-bit binary data cannot be successfully transferred.
  1007.  
  1008. prompt [string]@\The given string will be substituted for "@q(C-Kermit)>" as
  1009. this program's prompt.  If the string is omitted, the prompt will revert to
  1010. "@q(C-Kermit>)".  If the string is enclosed in doublequotes, the quotes will
  1011. be stripped and any leading and trailing blanks will be retained.
  1012.  
  1013. send @i<parameter>@\
  1014. Establish parameters to use when sending packets.  These will be in effect
  1015. only for the initial packet sent, since the other Kermit may override these
  1016. parameters during the protocol parameter exchange (unless noted below).
  1017. @begin(description,leftmargin +4,indent -4)
  1018. end-of-packet @i(cc)@\Specifies the control character needed by the other
  1019. Kermit to recognize the end of a packet.  C-Kermit sends this character at the
  1020. end of each packet.  Normally 13 (carriage return), which most Kermit
  1021. implementations require.  Other Kermits require no terminator at all, still
  1022. others may require a different terminator, like linefeed (10).
  1023.  
  1024. packet-length @i(n)@\Specify the maximum packet length to send.  Normally 90.
  1025. Shorter packet lengths can be useful on noisy lines, or with systems or front
  1026. ends or networks that have small buffers.  The shorter the packet, the higher
  1027. the overhead, but the lower the chance of a packet being corrupted by noise,
  1028. and the less time to retransmit corrupted packets.  This command overrides
  1029. the value requested by the other Kermit during protocol initiation unless the
  1030. other Kermit requests a shorter length.
  1031.  
  1032. pad-character @i(cc)@\Designate a character to send before each packet.
  1033. Normally, none is sent.  Outbound padding is sometimes necessary for
  1034. communicating with slow half duplex systems that provide no other means of
  1035. line turnaround control.  It can also be used to send special characters
  1036. to communications equipment that needs to be put in "transparent" or
  1037. "no echo" mode, when this can be accomplished in by feeding it a certain
  1038. control character.
  1039.  
  1040. padding @i(n)@\How many pad characters to send, normally 0.
  1041.  
  1042. start-of-packet @i(cc)@\The normal Kermit packet prefix is Control-A (1); this
  1043. command changes the prefix C-Kermit puts on outbound packets.  The only
  1044. reasons this should ever be changed would be: Some piece of equipment somewhere
  1045. between the two Kermit programs will not pass through a Control-A; or, some
  1046. piece of of equipment similarly placed is echoing its input.  In the latter
  1047. case, the recipient of such an echo can change the packet prefix for outbound
  1048. packets to be different from that of arriving packets, so that the echoed
  1049. packets will be ignored.  The opposite Kermit must also be told to change the
  1050. prefix for its inbound packets.
  1051.  
  1052. timeout @i(n)@\Specifies the number of seconds you want the other Kermit
  1053. to wait for a packet before timing it out and requesting retransmission.
  1054. @end(description)
  1055.  
  1056. receive @i<parameter>@\
  1057. Establish parameters to request the other Kermit to use when sending packets.
  1058. @begin(description,leftmargin +4,indent -4)
  1059. end-of-packet @i(cc)@\Requests the other Kermit to terminate its packets with
  1060. the specified character.
  1061.  
  1062. packet-length @i(n)@\Specify the maximum packet length to that you want the
  1063. other Kermit to send, normally 90.  If you specify a length of 95 or greater,
  1064. then it will be used if the other Kermit supports, and agrees to use, the
  1065. Kermit protocol extension for long packets.  In this case, the maximum length
  1066. depends upon the systems involved, but there would normally be no reason for
  1067. packets to be more than about 1000 characters in length.  The 'show
  1068. parameters' command displays C-Kermit's current and maximum packet lengths.
  1069.  
  1070. pad-character @i(cc)@\C-Kermit normally does not need to have incoming packets
  1071. preceded with pad characters.  This command allows C-Kermit to request the
  1072. other Kermit to use @i(cc) as a pad character.  Default @i(cc) is NUL, ASCII 0.
  1073.  
  1074. padding @i(n)@\How many pad characters to ask for, normally 0.
  1075.  
  1076. start-of-packet @i(cc)@\Change the prefix C-Kermit looks for on inbound
  1077. packets to correspond with what the other Kermit is sending.
  1078.  
  1079. timeout @i(n)@\Normally, each Kermit partner sets its packet timeout interval
  1080. based on what the opposite Kermit requests.  This command allows you to
  1081. override the normal procedure and specify a timeout interval for Unix Kermit to
  1082. use when waiting for packets from the other Kermit.  If you specify 0, then no
  1083. timeouts will occur, and Unix Kermit will wait forever for expected packets to
  1084. arrive.
  1085. @end(description)
  1086.  
  1087. speed {0, 110, 150, 300, 600, 1200, 1800, 2400, 4800, 9600}@\The baud rate for
  1088. the external communication line.  This command cannot be used to change the
  1089. speed of your own console terminal.  Many Unix systems are set up in such a way
  1090. that you must give this command after a 'set line' command before you can use
  1091. the line.  'set baud' is a synomym for 'set speed'.
  1092.  
  1093. terminal@\Used for specifying terminal parameters.  Currently, 'bytesize' is
  1094. the only parameter provided, and it can be set to 7 or 8.  It's 7 by default.
  1095. @end(description)
  1096.  
  1097. @heading(The 'show' Command:)
  1098.  
  1099. Syntax: @q<show {parameters, versions}>
  1100.  
  1101. The "show" command with the default argument of "parameters" displays
  1102. the values of all the 'set' parameters described above.  If you type
  1103. "show versions", then C-Kermit will display the version numbers and
  1104. dates of all its internal modules.  You should use the "show versions"
  1105. command to ascertain the vintage of your Kermit program before reporting
  1106. problems to Kermit maintainers.
  1107.  
  1108. @heading(The 'statistics' Command:)
  1109.  
  1110. The statistics command displays information about the most recent Kermit
  1111. protocol transaction, including file and communication line i/o, timing
  1112. and efficiency, as well as what encoding options were in effect (such as
  1113. 8th-bit prefixing, repeat-@|count compression).
  1114.  
  1115. @heading(The 'take' and 'echo' Commands:)
  1116.  
  1117. Syntax: @q<take >@i<fn1>@*
  1118. @ @ @ @ @ @q<echo >@i<[text to be echoed]>
  1119.  
  1120. The 'take' command instructs C-Kermit to execute commands from the named
  1121. file.  The file may contain any interactive C-Kermit commands, including
  1122. 'take'; command files may be nested to any reasonable depth, but it may
  1123. not contain text to be sent to a remote system during the 'connect' command.
  1124. This means that a command file like this:
  1125. @begin(example)
  1126. set line /dev/tty17
  1127. set speed 9600
  1128. connect
  1129. login myuserid
  1130. mypassword
  1131. @i<etc>
  1132. @end(example)
  1133. will not send "login myserid" or any of the following text to the remote
  1134. system.  To carry on a canned dialog, use the 'script' command, described
  1135. later.
  1136.  
  1137. The '@q(%)' command is useful for including comments in take-command files.
  1138. It may only be used at the beginning of a line.
  1139.  
  1140. The 'echo' command may be used within command files to issue greetings,
  1141. announce progress, ring the terminal bell, etc.  The 'echo' command should not
  1142. be confused with the Unix 'echo' command, which can be used to show how meta
  1143. characters would be expanded.  The Kermit echo command simply displays its text
  1144. argument (almost) literally at the terminal; the argument may contain octal
  1145. escapes of the form @qq(\ooo), where @q(o) is an octal digit (0-7), and there
  1146. may be 1, 2, or 3 such digits, whose value specify an ASCII character, such as
  1147. @qq(\007) (or @qq(\07) or just @qq(\7)) for beep, @qq(\012) for newline, etc.
  1148. Of course, each backslash must be must be entered twice in order for it to be
  1149. passed along to the echo command by the Kermit command parser.
  1150.  
  1151. Take-command files are in exactly the same syntax as interactive commands.
  1152. Note that this implies that if you want to include special characters like
  1153. question mark or backslash that you would have to quote with backslash when
  1154. typing interactive commands, you must quote these characters the same way
  1155. in command files.  Long lines may be continued by ending them with a single
  1156. backslash.
  1157.  
  1158. Command files may be used in lieu of command macros, which have not been
  1159. implemented in this version of C-Kermit.  For instance, if you commonly
  1160. connect to a system called 'B' that is connected to ttyh7 at 4800 baud,
  1161. you could create a file called @q(b) containing the commands
  1162. @begin(example)
  1163. % C-Kermit command file to connect to System B thru /dev/ttyh7
  1164. set line /dev/ttyh7
  1165. set speed 4800
  1166. % Beep and give message
  1167. echo \\007Connecting to System B...
  1168. connect
  1169. @end(example)
  1170. and then simply type 'take b' (or 't b' since no other commands begin with
  1171. the letter 't') whenever you wish to connect to system B.  Note the
  1172. comment lines and the beep inserted into the 'echo' command.
  1173.  
  1174. @index<IBM>
  1175. For connecting to IBM mainframes, a number of 'set' commands are required;
  1176. these, too, can be conveniently collected into a 'take' file like this one:
  1177. @begin(example)
  1178. % Sample C-Kermit command file to set up current line
  1179. % for IBM mainframe communication
  1180. %
  1181. set parity mark
  1182. set handshake xon
  1183. set flow-control none
  1184. set duplex half
  1185. @end(example)
  1186.  
  1187. Note that no single command is available to wipe out all of these settings
  1188. and return C-Kermit to its default startup state; to do that, you can either
  1189. restart the program, or else make a command file that executes the necessary
  1190. 'set' commands:
  1191. @begin(example)
  1192. % Sample C-Kermit command file to restore normal settings
  1193. %
  1194. set parity none
  1195. set handshake none
  1196. set flow-control xon/xoff
  1197. set duplex full
  1198. @end(example)
  1199.  
  1200. An implicit 'take' command is executed upon your @q(.kermrc) file when C-Kermit
  1201. starts up, upon either interactive or command-line invocation.  The @q(.kermrc)
  1202. file should contain 'set' or other commands you want to be in effect at all
  1203. times.  For instance, you might want override the default action when incoming
  1204. files have the same names as existing files -- in that case, put the command
  1205. @example(set file warning on)
  1206. in your @q(.kermrc) file.  On some non-Unix systems that run C-Kermit, the
  1207. initialization file might have a different name, such as @q<kermit.ini>.
  1208.  
  1209. Errors encountered during execution of take files (such as failure to complete
  1210. dial or script operations) cause termination of the current take file, popping
  1211. to the level that invoked it (take file, interactive level, or the shell).
  1212. When kermit is executed in the background, errors during execution of a take
  1213. file are fatal.
  1214.  
  1215. Under Unix, you may also use the shell's redirection mechanism to cause
  1216. C-Kermit to execute commands from a file:
  1217. @example(kermit < cmdfile)
  1218. or you can even pipe commands in from another process:
  1219. @example(cmdprocess | kermit)
  1220.  
  1221. @heading(The 'connect' Command:)
  1222.  
  1223. The 'connect' command ('c' is an acceptable non-unique abbreviation for
  1224. 'connect') links your terminal to another computer as if it were a local
  1225. terminal to that computer, through the device specified in the most recent 'set
  1226. line' command, or through the default device if your system is a PC or
  1227. workstation.  All characters you type at your keyboard are sent out the
  1228. communication line (and if you have 'set duplex half', also displayed on your
  1229. screen), and all characters arriving at the communication port are displayed on
  1230. the screen.  Current settings of speed, parity, duplex, and flow-@|control are
  1231. honored, and the data connection is 7 bits wide unless you have given the
  1232. command 'set terminal bytesize 8'.  If you have issued a 'log session' command,
  1233. everything you see on your screen will also be recorded to your session log.
  1234. This provides a way to "capture" files from remote systems that don't have
  1235. Kermit programs available.
  1236.  
  1237. To get back to your own system, you must type the escape character, which is
  1238. Control-@|Backslash (@q[^\]) unless you have changed it with the 'set escape'
  1239. command, followed by a single-@|character command, such as 'c' for "close
  1240. connection".  Single-@|character commands include:
  1241. @begin(description,leftmargin +8,indent -6,spread 0.4)
  1242. c@\Close the connection
  1243.  
  1244. b@\Send a BREAK signal
  1245.  
  1246. 0@\(zero) send a null
  1247.  
  1248. s@\Give a status report about the connection
  1249.  
  1250. h@\Hangup the phone
  1251.  
  1252. @q[^\]@\Send Control-Backslash itself (whatever you have defined the
  1253. escape character to be, typed twice in a row sends one copy of it).
  1254. @end(description)
  1255. Uppercase and control equivalents for (most of) these letters are also
  1256. accepted.  A space typed after the escape character is ignored.  Any other
  1257. character will produce a beep.
  1258.  
  1259. The connect command simply displays incoming characters on the screen.  It is
  1260. assumed any screen control sequences sent by the host will be handled by the
  1261. firmware or emulation software in your terminal or PC.  If special terminal
  1262. emulation is desired, then the 'connect' command can invoked from the Unix
  1263. command line (@q(-c) or @q(-n)), piped through a terminal emulation filter,
  1264. e.g.
  1265. @example(kermit -l /dev/acu -b 1200 -c | tek)
  1266.  
  1267. @heading(The 'dial' command:)
  1268.  
  1269. Syntax: @q(dial )@i(telephone-number-string)
  1270.  
  1271. @index<Modems>@index<Dialout Modems>
  1272. This command controls dialout modems; you should have already issued a "set
  1273. line" and "set speed" command to identify the terminal device, and a "set
  1274. modem" command to identify the type of modem to be used for dialing.  In the
  1275. "dial" command, you supply the phone number and the Kermit program feeds it to
  1276. the modem in the appropriate format and then interprets dialer return codes and
  1277. modem signals to inform you whether the call was completed.  The
  1278. telephone-@|number-@|string may contain imbedded modem-@|dialer commands, such
  1279. as comma for Hayes pause, or `@q(&)' for Ventel dialtone wait and `@q(%)' for
  1280. Ventel pause (consult your modem manual for details).
  1281.  
  1282. At the time of this writing, support is included for the following modems:
  1283. @begin(itemize,spread 0)
  1284. AT&T 7300 Internal Modem
  1285.  
  1286. Cermetek Info-Mate 212A
  1287.  
  1288. Concord Condor CDS 220
  1289.  
  1290. DEC DF03-AC
  1291.  
  1292. DEC DF100 Series
  1293.  
  1294. DEC DF200 Series
  1295.  
  1296. General DataComm 212A/ED
  1297.  
  1298. Hayes Smartmodem 1200 and compatibles
  1299.  
  1300. Penril
  1301.  
  1302. Racal Vadic
  1303.  
  1304. US Robotics 212A
  1305.  
  1306. Ventel
  1307. @end(itemize)
  1308. Support for new modems is added to the program from time to time; you
  1309. can check the current list by typing "@q<set modem ?>".
  1310.  
  1311. The device used for dialing out is the one selected in the most recent "set
  1312. line" command (or on a workstation, the default line if no "set line" command
  1313. was given).  The "dial" command calls locks the path (see the section on line
  1314. locking below) and establishes a call on an exclusive basis.  If it is desired
  1315. to dial a call and then return to the shell (such as to do kermit activities
  1316. depending on standard in/out redirection), it is necessary to place the dialed
  1317. call under one device name (say, "@q</dev/cua0>") and then escape to the shell
  1318. @i<within Kermit> on a linked device which is separate from the dialed line
  1319. (say, "@q</dev/cul0>").  This is the same technique used by uucp (to allow
  1320. locks to be placed separately for dialing and conversing).
  1321.  
  1322. Because modem dialers have strict requirements to override the carrier-@|detect
  1323. signal most Unix implementations expect, the sequence for dialing is more rigid
  1324. than most other C-Kermit procedures.
  1325.  
  1326. Example one:
  1327. @begin(example)
  1328. @ux<kermit -l /dev/cul0 -b 1200>
  1329. C-Kermit>@ux<set modem-dialer hayes>    @i(hint: abbreviate) set m h
  1330. C-Kermit>@ux<dial 9,5551212>
  1331. Connected!
  1332. C-Kermit>@ux<connect>            @i(hint: abbreviate) c
  1333. @i(logon, request remote server, etc.)
  1334. @ux<^\c>                @i(escape back)
  1335. C-Kermit> ...
  1336. C-Kermit>@ux<quit>            @i(hint: abbreviate) q
  1337. @end(example)
  1338. this disconnects modem, and unlocks line.
  1339.  
  1340. Example two:
  1341. @begin(example)
  1342. @u(kermit)
  1343. C-Kermit>@ux(set modem-dialer ventel)
  1344. C-Kermit>@ux(set line /dev/cul0)
  1345. C-Kermit>@ux(dial 9&5551212%)
  1346. Connected!
  1347. C-Kermit> ...
  1348. @end(example)
  1349. Example three:
  1350. @begin(example)
  1351. kermit
  1352. C-Kermit>@ux(take my-dial-procedure)
  1353. Connected!
  1354.  
  1355. @i(file my-dial-procedure):
  1356. set modem hayes
  1357. set line /dev/tty99
  1358. dial 5551212
  1359. connect
  1360. @end(example)
  1361. In general, C-Kermit requires that the modem provide the "carrier detect" (CD)
  1362. signal when a call is in progress, and remove that signal when the call
  1363. completes or the line drops.  If a modem switch setting is available to force
  1364. CD, it should normally not be in that setting.  C-Kermit also requires (on most
  1365. systems) that the modem track the computer's "data terminal ready" (DTR)
  1366. signal.  If a switch setting is available to simulate DTR asserted within the
  1367. modem, then it should normally not be in that setting.  Otherwise the modem
  1368. will be unable to hang up at the end of a call or when interrupts are received
  1369. by Kermit.
  1370.  
  1371. For Hayes @index<Hayes Modem> dialers, two important switch settings are #1 and
  1372. #6.  Switch #1 should be normally be UP so that the modem can act according to
  1373. your computer's DTR signal.  But if your computer, or particular implementation
  1374. of Kermit, cannot control DTR, then switch 1 should be DOWN.  Switch #6 should
  1375. normally be UP so carrier-@|detect functions properly (but put it DOWN if you
  1376. have trouble with the UP position).  Switches #2 (English versus digit result
  1377. codes) and #4 (Hayes echoes modem commands) may be in either position.
  1378.  
  1379. If you want to interrupt a dial command in progress (for instance, because
  1380. you just realize that you gave it the wrong number), type a Control-C to
  1381. get back to command level.
  1382.  
  1383. @heading(The 'script' Command:)
  1384.  
  1385. Syntax: @q(script )@i(expect send [expect send] . . .)
  1386.  
  1387. "expect" has the syntax: @i(expect[-send-expect[-send-expect[...]]])
  1388.  
  1389. The 'script' command carries on a "canned dialog" with a remote system, in
  1390. which data is sent according to the remote system's responses.  The typical use
  1391. is for logging in to a remote system automatically.
  1392.  
  1393. C-Kermit's script facility operates in a manner similar to that commonly
  1394. used by the Unix UUCP system's "@q(L.sys)" file entries.  A login script
  1395. is a sequence of the form:
  1396. @example(@i<expect send [expect send] . . .>)
  1397. where @i(expect) is a prompt or message to be issued by the remote site, and
  1398. @i(send) is the string (names, numbers, etc) to return, and expects are
  1399. separated from sends by spaces.  The send may also be the keyword EOT, to send
  1400. Control-D, or BREAK, to send a break signal.  Letters in sends may be prefixed
  1401. by `@q[%]' to send special characters, including:
  1402. @begin(description,leftmargin +8,indent -4,spread 0)
  1403. @q(%b)@\backspace
  1404.  
  1405. @q(%s)@\space
  1406.  
  1407. @q(%q)@\`@q[?]'(trapped by Kermit's command interpreter)
  1408.  
  1409. @q(%n)@\linefeed
  1410.  
  1411. @q(%r)@\carriage return
  1412.  
  1413. @q(%t)@\tab
  1414.  
  1415. @q(%')@\single quote
  1416.  
  1417. @q(%%)@\tilde
  1418.  
  1419. @q(%")@\double quote
  1420.  
  1421. @q(%x)@\XON (Control-Q)
  1422.  
  1423. @q(%c)@\don't append a carriage return
  1424.  
  1425. @q(%)@i(o[o[o]])@ @ an octal character
  1426.  
  1427. @q(%d)@\delay approx 1/3 second during send
  1428.  
  1429. @q(%w)@i([d[d]])@ @ wait specified interval during expect, then time out
  1430. @end(description)
  1431. As with some UUCP systems, sent strings are followed by @q(%r) unless they have
  1432. a @q(%c).
  1433.  
  1434. Only the last 7 characters in each expect are matched.  A null @i(expect),
  1435. e.g. @q(%0) or two adjacent dashes, causes a short delay before proceeding
  1436. to the next send sequence.  A null expect always succeeds.
  1437.  
  1438. As with UUCP, if the expect string does not arrive, the script attempt
  1439. fails.  If you expect that a sequence might not arrive, as with UUCP,
  1440. conditional sequences may be expressed in the form:
  1441. @example(@i<-send-expect[-send-expect[...]]>)
  1442. where dashed sequences are followed as long as previous expects fail.
  1443. Timeouts for expects can be specified using @q(%w); @q(%w) with no
  1444. arguments waits 15 seconds.
  1445.  
  1446. @i(Expect/send) transactions can be easily be debugged by logging
  1447. transactions.  This records all exchanges, both expected and actual.
  1448. The script execution will also be logged in the session log, if that is
  1449. activated.
  1450.  
  1451. Note that `@q[\]' characters in login scripts, as in any other C-Kermit
  1452. interactive commands, must be doubled up.  A line may be ended with a
  1453. single `@q[\]' for continuation.
  1454.  
  1455. Example one:
  1456.  
  1457. Using a modem, dial a UNIX host site.  Expect "login" (...gin), and if it
  1458. doesn't come, simply send a null string with a @q(%r).  (Some Unixes
  1459. require either an EOT or a BREAK instead of the null sequence, depending
  1460. on the particular site's "logger" program.)  After providing user id
  1461. and password, respond "x" to a question-mark prompt, expect the Bourne
  1462. shell "@q($)" prompt (and send return if it doesn't arrive).  Then cd to
  1463. directory kermit, and run the program called "wermit", entering the
  1464. interactive connect state after wermit is loaded.
  1465. @begin(example)
  1466. set modem ventel
  1467. set line /dev/tty77
  1468. set baud 1200
  1469. dial 9&5551212
  1470. script gin:--gin:--gin: smith ssword: mysecret %q x $--$ \
  1471.  cd%skermit $ wermit
  1472. connect
  1473. @end(example)
  1474. Note that 'set line' is issued @i<after> 'set modem', but @i<before>
  1475. 'set baud' or other line-@|related parameters.
  1476.  
  1477. Example two:
  1478.  
  1479. @index(TELENET)
  1480. Using a modem, dial the Telenet network.  This network expects three returns
  1481. with slight delays between them.  These are sent following null expects.  The
  1482. single return is here sent as a null string, with a return appended by default.
  1483. Four returns are sent to be safe before looking for the prompt.  Then the
  1484. Telenet id and password are entered.  Then Telenet is instructed to connect to
  1485. a host site (c 12345).  The host has a data switch that asks "which system";
  1486. the script responds "myhost" (if the "which system" prompt doesn't appear, the
  1487. Telenet connect command is reissued).  The script waits for an @qq"@@" prompt
  1488. from the host, then sends the user ID ("joe") and password ("secret"), looks
  1489. for another @qq<@@> prompt, runs Kermit, and in response to the Kermit's prompt
  1490. (which ends in @qq[>]), gives the commands "set parity even" and "server".
  1491. Files are then exchanged.  The commands are in a take file; note the
  1492. continuation of the 'script' command onto several lines using the `@q[\]'
  1493. terminator.
  1494. @begin(example)
  1495. set modem hayes
  1496. set line /dev/acu
  1497. set speed 1200
  1498. set parity mark
  1499. dial 9,5551212
  1500. script %0 %0 %0 %0 %0 %0 %0 %0 @@--@@--@@ id%saa001122 = 002211 @@ \
  1501.     c%s12345 ystem-c%s12345-ystem myhost @@ joe%ssecret @@ kermit \
  1502.     > set%sparity%seven > server
  1503. send some.stuff
  1504. get some.otherstuff
  1505. bye
  1506. quit
  1507. @end(example)
  1508. Since these commands may be executed totally in the background, they
  1509. can also be scheduled.  A typical shell script, which might be scheduled
  1510. by cron, would be as follows (csh used for this example):
  1511.  
  1512. @begin(example)
  1513. #
  1514. #keep trying to dial and log onto remote host and exchange files
  1515. #wait 10 minutes before retrying if dial or script fail.
  1516. #
  1517. cd someplace
  1518. while ( 1 )
  1519.         kermit < /tonight.cmd >> nightly.log &
  1520.         if ( ! $status ) break
  1521.         sleep 600
  1522. end
  1523. @end(example)
  1524. File @q(tonight.cmd) might have two takes in it, for example, one to take
  1525. a file with the set modem, set line, set baud, dial, and script, and
  1526. a second take of a file with send/get commands for the remote server.
  1527. The last lines of @q(tonight.cmd) should be a bye and a quit.
  1528.  
  1529. @heading(The 'help' Command:)
  1530.  
  1531. @begin(example,leftmargin 0)
  1532. @r(Syntax:) help
  1533. @ @ @ @i(or): help @i(keyword)
  1534. @ @ @ @i(or): help {set, remote} @i(keyword)
  1535. @end(example)
  1536.  
  1537. Brief help messages or menus are always available at interactive command
  1538. level by typing a question mark at any point.  A slightly more verbose form
  1539. of help is available through the 'help' command.  The 'help' command with
  1540. no arguments prints a brief summary of how to enter commands and how to
  1541. get further help.  'help' may be followed by one of the top-level C-Kermit
  1542. command keywords, such as 'send', to request information about a command.
  1543. Commands such as 'set' and 'remote' have a further level of help.  Thus you
  1544. may type 'help', 'help set', or 'help set parity'; each will provide a
  1545. successively more detailed level of help.
  1546.  
  1547.  
  1548. @heading(The 'exit' and 'quit' Commands:)
  1549.  
  1550. These two commands are identical.  Both of them do the following:
  1551.  
  1552. @begin(itemize,spread 0)
  1553. Attempt to insure that the terminal is returned to normal.
  1554.  
  1555. Relinquish access to any communication line assigned via 'set line'.
  1556.  
  1557. Relinquish any uucp and multiuser locks on the communications line.
  1558.  
  1559. Hang up the modem, if the communications line supports data terminal ready.
  1560.  
  1561. Close any open logs or other files.
  1562. @end(itemize)
  1563. After exit from C-Kermit, your default directory will be the same as when
  1564. you started the program.  The 'exit' command is issued implicitly whenever
  1565. C-Kermit halts normally, e.g. after a command line invocation, or after certain
  1566. kinds of interruptions.
  1567.  
  1568. @section(UUCP Lock Files)
  1569.  
  1570. Unix has no standard way of obtaining exclusive access to an external
  1571. communication line.  When you issue the 'set line' command to Unix Kermit, Unix
  1572. would normally grant you access to the line even if some other process is
  1573. making use of it.  The method adopted by most Unix systems to handle this
  1574. situation is the "UUCP lock file".  UUCP, the Unix-@|to-@|Unix Copy program,
  1575. creates a file in its directory (usually @q(/usr/spool/uucp), on some systems
  1576. @q</etc/locks>) with a name like @q(LCK..)@i(name), where @i(name) is the
  1577. device name, for instance @q(tty07).
  1578.  
  1579. Unix Kermit uses UUCP lock files in order to avoid conflicts with UUCP,
  1580. tip, or other programs that follow this convention.  Whenever you attempt
  1581. to access an external line using the 'set line' command or `@q(-l)' on the
  1582. command line, Kermit looks
  1583. in the UUCP directory for a lock file corresponding to that device.  For
  1584. instance, if you 'set line /dev/ttyi6' then Kermit looks for the file
  1585. @example(/usr/spool/uucp/LCK..ttyi6)
  1586. If it finds this file, it gives you an error message and a directory
  1587. listing of the file so that you can see who is using it, e.g.
  1588. @begin(example)
  1589. -r--r--r--  1 fdc        4 May  7 13:02 /usr/spool/uucp/LCK..ttyi6
  1590. @end(example)
  1591. In this case, you would look up user fdc to find out how soon the line
  1592. will become free.
  1593.  
  1594. This convention requires that the uucp directory be publicly readable
  1595. and writable.  If it is not, the program will issue an appropriate warning
  1596. message, but will allow you to proceed at your own risk (and the risk of
  1597. anyone else who might also be using the same line).
  1598.  
  1599. If no lock file is found, Unix Kermit will attempt create one, thus preventing
  1600. anyone who subsequently tries to run Kermit, UUCP, tip, or similar programs on
  1601. the same line from gaining access until you release the line.  If Kermit could
  1602. not create the lock file (for instance because the uucp directory is
  1603. write-@|protected), then you will receive a warning message but will be allowed
  1604. to proceed at your -- and everyone else's -- risk.  When Kermit terminates
  1605. normally, your lock file is removed.
  1606.  
  1607. Even when the lock directory is writable and readable, the locking mechanism
  1608. depends upon all users using the same name for the same device.  If a device
  1609. has more than one path associated with it, then a lock can be circumvented by
  1610. using an alias.
  1611.  
  1612. When a lock-@|creating program abruptly terminates, e.g. because it crashes or
  1613. is killed via shell command, the lock file remains in the uucp directory,
  1614. spuriously indicating that the line is in use.  If the lock file is owned by
  1615. yourself, you may remove it.  Otherwise, you'll have to get the owner or the
  1616. system manager to remove it, or else wait for a system task to do so; uucp
  1617. supports a function (uuclean) which removes these files after a predetermined
  1618. age -- uucp sites tend to run this function periodically via crontab.
  1619.  
  1620. Locking is not needed, or used, if communications occur over the user's
  1621. login terminal line (normally @q[/dev/tty]).
  1622.  
  1623. It may be seen that line locking is fraught with peril.  It is included in Unix
  1624. Kermit only because other Unix communication programs rely on it.  While it
  1625. is naturally desirable to assure exclusive access to a line, it is also
  1626. undesirable to refuse access to a vacant line only because of a spurious lock
  1627. file, or because the uucp directory is not appropriately protected.
  1628.  
  1629. @section(C-Kermit under Berkeley or System III/V Unix:)
  1630.  
  1631. C-Kermit may be interrupted at command level or during file transfer by typing
  1632. Control-C.  The program will perform its normal exit function, restoring the
  1633. terminal and releasing any lock.  If a protocol transaction was in progress, an
  1634. error packet will be sent to the opposite Kermit so that it can terminate
  1635. cleanly.
  1636.  
  1637. C-Kermit may be invoked in the background ("@q(&)" on shell commmand line).
  1638. If a background process is "killed", the user will have to manually
  1639. remove any lock file and may need to restore the modem.  This is because
  1640. the kill signal (@q<kill(@i[x],9)>) cannot be trapped by Kermit.
  1641.  
  1642. During execution of a system command ('directory', 'cwd', or `@q(!)'), C-Kermit
  1643. can often be returned to command level by typing a single Control-C.  (With
  1644. System III/V, the usual interrupt function (often the DEL key) is replaced by
  1645. Control-C.)
  1646.  
  1647. Under Berkeley Unix only: C-Kermit may also be interrupted by @q(^Z) to put the
  1648. process in the background.  In this case the terminal is not restored.  You
  1649. will have to type Control-J followed by "reset" followed by another Control-J
  1650. to get your terminal back to normal.
  1651.  
  1652. Control-C, Control-Z, and Control-@q(\) lose their normal functions during
  1653. terminal connection and also during file transfer when the controlling tty
  1654. line is being used for packet i/o.
  1655.  
  1656. If you are running C-Kermit in "quiet mode" in the foreground, then
  1657. interrupting the program with a console interrupt like Control-C will not
  1658. restore the terminal to normal conversational operation.  This is because
  1659. the system call to enable console interrupt traps will cause the program to
  1660. block if it's running in the background, and the primary reason for quiet
  1661. mode is to allow the program to run in the background without blocking, so
  1662. that you can do other work in the foreground.
  1663.  
  1664. If C-Kermit is run in the background ("&" on shell commmand line), then
  1665. the interrupt signal (Control-C) (and System III/V quit signal) are
  1666. ignored.  This prevents an interrupt signal intended for a foreground
  1667. job (say a compilation) from being trapped by a background Kermit session.
  1668.  
  1669.  
  1670. @section(C-Kermit on the DEC Pro-3xx with Pro/Venix Version 1)
  1671.  
  1672. The DEC Professional 300 series are PDP-11/23 based personal computers.  Venix
  1673. Version 1 is a Unix v7 derivative.  It should not be confused with Venix
  1674. Version 2, which is based on ATT System V; these comments apply to Venix
  1675. Version 1 only.  C-Kermit runs in local mode on the Pro-3@i(xx) when invoked
  1676. from the console; the default device is @q(/dev/com1.dout).  When connected to
  1677. a remote system (using C-Kermit's 'connect' command), Pro/Venix itself (not
  1678. Kermit) provides VT52 terminal emulation.  Terminal operation at high speeds
  1679. (like 9600 baud) requires xon/xoff flow control, which unfortunately interferes
  1680. with applications such as the EMACS that use Control-Q and Control-S as
  1681. commands.
  1682.  
  1683. When logging in to a Pro-3xx (or any workstation) through the "back port",
  1684. it may be necessary to give the command "set line /dev/tty" in order to get
  1685. C-Kermit to function correctly in remote mode (on a system in which it
  1686. normally expects to be operating in local mode).
  1687.  
  1688. @section(C-Kermit under VAX/VMS)
  1689.  
  1690. C-Kermit can be built using VAX-11 C to run under VMS.  Most of the
  1691. descriptions in this manual hold true, but it should be noted that as of this
  1692. writing the VMS support is not thoroughly tested, and no explicit support
  1693. exists for the various types of VMS files and their attributes.
  1694.  
  1695. The C-Kermit init file for VMS is called @q<KERMIT.INI>.
  1696.  
  1697.  
  1698. @section(C-Kermit on the Macintosh and other Systems)
  1699.  
  1700. The "protocol kernel" of C-Kermit is also used by Columbia's Macintosh Kermit.
  1701. The user and system interface is entirely different, and is covered in a
  1702. separate document.
  1703.  
  1704. There is also a Kermit for the Commodore Amiga based on C-Kermit, as well
  1705. as versions for MS-DOS, Data General operating systems, etc.
  1706.  
  1707. @section(C-Kermit Restrictions and Known Bugs)
  1708.  
  1709. @begin(enumerate)
  1710. @ux(Editing characters):
  1711. The program's interactive command interrupt, delete, and kill characters are
  1712. Control-C, Delete (or Backspace), and Control-U, respectively.  There is
  1713. currently no way to change them to suit your taste or match those used by
  1714. your shell, in case those are different.
  1715.  
  1716. @ux(Flow control):
  1717. C-Kermit attempts to use XON/XOFF flow control during protocol operations,
  1718. but it also puts the communication line into "rawmode".  On many systems,
  1719. rawmode disables flow control, so even though you may have "set flow xon/xoff",
  1720. no flow control will be done.  This is highly system and Unix-version
  1721. dependent.
  1722.  
  1723. @ux(High baud rates):
  1724. There's no way to specify baud rates higher than 9600 baud.  Most Unix
  1725. systems don't supply symbols for them (unless you use EXTA, EXTB), and even
  1726. when they do, the program has no way of knowing whether a specific port's
  1727. serial i/o controller supports those rates.
  1728.  
  1729. @ux(Modem controls):
  1730. If a connection is made over a communication line (rather than on the
  1731. controlling terminal line), and that line has modem controls, (e.g. data
  1732. terminal ready and carrier detection implementation), returning to the shell
  1733. level will disconnect the conversation.  In that case, one should use
  1734. interactive mode commands, and avoid use of piped shell-@|level operation
  1735. (also see 'set modem-dialer' and 'dial' commands.)
  1736.  
  1737. @ux(Login Scripts):  The present login scripts implementation follows
  1738. the Unix conventions of uucp's "@q(L.sys)" file, rather than the normal
  1739. Kermit "INPUT/@|OUTPUT" style.
  1740.  
  1741. @ux(Dial-out vs dial-in communications lines):
  1742. C-Kermit requires a dial-out or dedicated line for the "set line" or "-l"
  1743. options.  Most systems have some lines dedicated to dial-in, which they enable
  1744. "loggers" on, and some lines available for dial-out.  Recent releases of
  1745. Unix (ATT & Berkeley) have mechanisms for changing the directionality of a
  1746. line.
  1747.  
  1748. @begin(multiple)
  1749. @ux(Using C-Kermit on Local Area Networks):
  1750. C-Kermit can successfully operate at speeds up to 9600 baud over LANs,
  1751. provided the network buffers are big enough to accommodate Kermit packets.
  1752.  
  1753. When computers are connected to LAN's through asynchronous terminal
  1754. interfaces, then the connection should be configured to do XON/XOFF flow
  1755. control between the network interface and the computer, rather than passing
  1756. these signals through transparently.  This can help prevent Kermit from
  1757. overrunning the LAN's buffers if they are small (or if the LAN is congested),
  1758. and will can also prevent the LAN from overrunning a slow Kermit's buffers.
  1759.  
  1760. If the network hardware cannot accept 100 characters at a time, and flow
  1761. control cannot be done between the network and the computer, then Kermit's
  1762. "set send/receive packet-length" command can be used to shorten the packets.
  1763. @end(multiple)
  1764.  
  1765. @ux(Resetting terminal after abnormal termination or kill): When C-Kermit
  1766. terminates abnormally (say, for example, by a kill
  1767. command issued by the operator) the user may need to reset the terminal state.
  1768. If commands do not seem to be accepted at the shell prompt, try
  1769. Control-J "stty sane" Control-J (use "reset" on Berkeley Unix).
  1770. That should take the terminal out of "raw mode" if it was stuck there.
  1771.  
  1772. @ux(Remote host commands may time-out on lengthy activity):
  1773. Using "remote host" to instruct the C-Kermit server to invoke Unix
  1774. functions (like "make") that might take a long time to produce output can cause
  1775. timeout conditions.
  1776.  
  1777. @ux(XOFF deadlocks):
  1778. When connecting back to C-Kermit after a transaction, or after finishing
  1779. the server, it may be necessary to type a Control-Q to clear up an XOFF
  1780. deadlock.  There's not much the program can do about this...
  1781. @end(enumerate)
  1782.  
  1783. @section(How to Build C-Kermit for a Unix System)
  1784.  
  1785. The C-Kermit files, as distributed from Columbia, all begin with the prefix
  1786. "ck".  You should make a directory for these files and then cd to it.  A
  1787. makefile is provided to build C-Kermit for various Unix systems (there are
  1788. separate makefiles for VMS and the Macintosh).  As distributed, the makefile
  1789. has the name "@q(ckuker.mak)".  You should rename it to "@q(makefile)" and then
  1790. type "make xxx", where xxx is the symbol for your system, for instance "make
  1791. bsd" to make C-Kermit for 4.x BSD Unix.  The result will be a program called
  1792. "wermit".  You should test this to make sure it works; if it does, then you can
  1793. rename it to "kermit" and install it for general use.  See the makefile for a
  1794. list of the systems supported and the corresponding "make" arguments.
  1795.  
  1796. @section(Adapting C-Kermit to Other Systems)
  1797.  
  1798. C-Kermit is designed for portability.  The level of portability is indicated
  1799. in parentheses after the module name: "C" means any system that has a C
  1800. compiler that conforms to the description in "The C Programming Language" by
  1801. Kernighan & Ritchie (Prentice-Hall, 1978).  "Cf" is like "C", but also
  1802. requires "standard" features like printf and fprintf, argument passing via
  1803. argv/argc, and so on, as described in Kernighan & Ritchie.  "Unix" means the
  1804. module should be useful under any Unix implementation; it requires features
  1805. such as fork() and pipes.  Anything else means that the module is particular
  1806. to the indicated system.  C-Kermit file names are of the form:
  1807.  
  1808. @q[ck<@i(system)><@i(what)>.<@i(type)>]
  1809.  
  1810. where the part before the dot is no more than 6 characters long, the part
  1811. after the dot no more than 3 characters long, and:
  1812.  
  1813. @q[<@i(type)>] is the file type:
  1814. @begin(description,leftmargin +8,indent -6,spread 0)
  1815. c:@\C language source
  1816.  
  1817. h:@\Header file for C language source
  1818.  
  1819. w:@\Wart preprocessor source, converted by Wart (or Lex) to a C program
  1820.  
  1821. nr:@\Nroff/Troff text formatter source
  1822.  
  1823. mss:@\Scribe text formatter source
  1824.  
  1825. doc:@\Documentation
  1826.  
  1827. hlp:@\Help text
  1828.  
  1829. bld:@\Instructions for building the program
  1830.  
  1831. bwr:@\A "beware" file - list of known bugs
  1832.  
  1833. upd:@\Program update log
  1834.  
  1835. mak:@\Makefile
  1836. @end(description)
  1837.  
  1838. @q[<@i(system)>] is a single character to tell what system the file applies to:
  1839. @begin(description,leftmargin +8,indent -6,spread 0)
  1840. a:@\Descriptive material, documentation
  1841.  
  1842. c:@\All systems with C compilers
  1843.  
  1844. d:@\Data General
  1845.  
  1846. h:@\Harris computers (reserved)
  1847.  
  1848. i:@\Commodore Amiga (Intuition)
  1849.  
  1850. m:@\Macintosh
  1851.  
  1852. p:@\IBM PC, PC-DOS (reserved)
  1853.  
  1854. u:@\Unix
  1855.  
  1856. v:@\VAX/VMS
  1857.  
  1858. w:@\Wart
  1859. @end(description)
  1860.  
  1861. @q[<@i(what)>] is mnemonic (up to 3 characters) for what's in the file:
  1862. @begin(description,leftmargin +8,indent -6,spread 0)
  1863. aaa:@\A "read-me" file, like this one
  1864.  
  1865. cmd:@\Command parsing
  1866.  
  1867. con:@\Connect command
  1868.  
  1869. deb:@\Debug/Transaction Log formats, Typedefs
  1870.  
  1871. dia:@\Modem/Dialer control
  1872.  
  1873. fio:@\System-depdendent File I/O
  1874.  
  1875. fns:@\Protocol support functions
  1876.  
  1877. fn2:@\More protocol support functions
  1878.  
  1879. ker:@\General C-Kermit definitions, information, documentation
  1880.  
  1881. mai:@\Main program
  1882.  
  1883. pro:@\Protocol
  1884.  
  1885. scr:@\Script command
  1886.  
  1887. tio:@\System-dependent terminal i/o & control and interrupt handing
  1888.  
  1889. usr:@\User interface
  1890.  
  1891. us2:@\More user interface
  1892.  
  1893. us3:@\Still more user interface
  1894. @end(description)
  1895.  
  1896. Examples:
  1897.  
  1898. @begin(description,spread 0)
  1899. @q(ckufio.c)@\File i/o for Unix
  1900.  
  1901. @q(ckmtio.c)@\Terminal i/o for Macintosh
  1902.  
  1903. @q(ckuker.mss)@\Scribe source for for Kermit User Guide chapter
  1904.  
  1905. @q(ckuker.nr)@\Nroff source file for Unix C-Kermit man page
  1906. @end(description)
  1907.  
  1908. The following material discusses each of the C-Kermit modules briefly.
  1909. @begin(description,leftmargin +4, indent -4)
  1910. @q<ckcmai.c, ckcker.h, ckcdeb.h (Cf)>:@\This is the main program.  It contains
  1911. declarations for global variables and
  1912. a small amount of code to initialize some variables and invoke the command
  1913. parser.  In its distributed form, it assumes that command line arguments are
  1914. passed to it via argc and argv.  Since this portion of code is only several
  1915. lines long, it should be easy to replace for systems that have different
  1916. styles of user interaction.  The header files define symbols and macros used
  1917. by the various modules of C-Kermit.  @q(ckcdeb.h) is the only header file
  1918. that is included by all the C-Kermit modules, so it contains not only the
  1919. debug format definitions, but also any compiler-@|dependent typedefs.
  1920.  
  1921. @q<ckwart.c (Cf), ckcpro.w (C)>:@\The ckcpro module embodies the Kermit
  1922. protocol state table and the code to accomplish state switching.  It is written
  1923. in "wart", a language which may be regarded as a subset of the Unix "lex"
  1924. lexical analyzer generator.  Wart implements enough of lex to allow the ckprot
  1925. module to function.  Lex itself was not used because it is proprietary.
  1926. The protocol module @q(ckcpro.w) is read by wart, and a
  1927. system-@|independent C program is produced.  The syntax of a Wart program is
  1928. illustrated by @q(ckcpro.w), and is described in @q(ckwart.doc).
  1929.  
  1930. @q<ckcfns.c (C)>:@\The module contains all the Kermit protocol support
  1931. functions -- packet formation, encoding, decoding, block check calculation,
  1932. filename and data conversion, protocol parameter negotiation, and high-@|level
  1933. interaction with the communication line and file system.  To accommodate small
  1934. systems, this module has been split into two -- @q(ckcfns.c) and @q(ckcfn2.c).
  1935.  
  1936. @q(ckutio.c):@\This module contains the system-@|dependent primitives for
  1937. communication line i/o, timers, and interrupts for the various versions of
  1938. Unix.  Certain important variables are defined in this module, which determine
  1939. whether C-Kermit is by default remote or local, what the default communication
  1940. device is, and so forth.  The tio module maintains its own private database of
  1941. file descriptors and modes for the console terminal and the file transfer
  1942. communication line so that other modules (like ckcfns or the terminal connect
  1943. module) need not be concerned with them.  The variations among Unix
  1944. implementations with respect to terminal control and timers are accommodated
  1945. via conditional compilation.
  1946.  
  1947. @q(ckufio.c):@\This module contains system-dependent primitives for file i/o,
  1948. wildcard (meta character) expansion, file existence and access checking, and
  1949. system command execution for the various versions of Unix.  It maintains an
  1950. internal database of i/o "channels" (file pointers in this case) for the files
  1951. C-Kermit cares about -- the input file (the file which is being sent), the
  1952. output file (the file being received), the various logs, the screen, and so
  1953. forth.  This module varies little among Unix implementations except for the
  1954. wildcard expansion code; the directory structure of 4.2bsd Unix is different
  1955. from that of other Unix systems.  Again, variation among Unix systems is
  1956. selected using conditional compilation.
  1957.  
  1958. @begin(multiple)
  1959. @q(ckuusr.h, ckuusr.c, ckuus2.c, ckuus3.c) (Unix):@\This is the "user
  1960. interface" for C-Kermit.  It includes the command parser,
  1961. the screen output functions, and console input functions.  The command
  1962. parser comes in two pieces -- the traditional Unix command line decoder
  1963. (which is quite small and compact), and the interactive keyword parser
  1964. (which is rather large).  This module is fully replacable; its interface to
  1965. the other modules is very simple, and is explained at the beginning of the
  1966. source file.  The ckuusr module also includes code to execute any commands
  1967. directly which don't require the Kermit protocol -- local file management,
  1968. etc.  The module is rated "Unix" because it makes occasional use of the
  1969. @q[system()] function.
  1970.  
  1971. Note that while @q(ckuusr) is logically one module, it has been split up into
  1972. three C source files, plus a header file for the symbols they share in common.
  1973. This is to accommodate small systems that cannot handle big modules.
  1974. @q(ckuusr.c) has the command line and top-@|level interactive command parser;
  1975. @q(ckuus2.c) has the help command and strings; @q(ckuus3) has the set
  1976. and remote commands along with the logging, screen, and "interrupt" functions.
  1977. @end(multiple)
  1978.  
  1979. @q(ckucmd.c, ckucmd.h) (Cf):@\This is an interactive command parsing package
  1980. developed for C-Kermit.  It is written portably enough to be usable on any
  1981. system that has a C compiler that supports functions like printf.  The file
  1982. name parsing functions depend upon primitives defined in the fio module; if
  1983. these primitives cannot be supplied for a certain system, then the filename
  1984. parsing functions can be deleted, and the package will still be useful for
  1985. parsing keywords, numbers, arbitrary text strings, and so forth.  The style of
  1986. interaction is the same as that found on the DECSYSTEM-20.
  1987.  
  1988. @q(ckucon.c) (Unix):@\This is the connect module.  As supplied, it should
  1989. operate in any Unix environment, or any C-based environment that provides the
  1990. fork() function.  The module requires access to global variables that specify
  1991. line speed, parity, duplex, flow control, etc, and invokes functions from the
  1992. tio module to accomplish the desired settings and input/output, and functions
  1993. from the fio module to perform session logging.  No terminal emulation is
  1994. performed, but since standard i/o is used for the console, this may be piped
  1995. through a terminal emulation filter.  The ckucon function may be entirely
  1996. replaced, so long as the global settings are honored by its replacement.  PC
  1997. implementations of C-Kermit may require the ck?con module to do screen control,
  1998. escape sequence interpretation, etc, and may also wish to write special code to
  1999. get the best possible performance.
  2000.  
  2001. @q(ckudia.c) (Unix):@\This is the dialer module.  As supplied, it handles
  2002. Hayes, Ventel, Penril, Racal-Vadic, and several other modems.
  2003.  
  2004. @q(ckuscr.c) (Unix):@\This is the login script module.  As supplied, it handles
  2005. uucp-@|style scripts.
  2006. @end(description)
  2007.  
  2008. Moving C-Kermit to a new system entails:
  2009. @begin(enumerate)
  2010. Creating a new @q<ck?tio> module in C, assembler, or whatever language is
  2011. most appropriate for system programming on the new system.  If the system
  2012. is Unix-like, then support may be added within the @q<ckutio.c> module itself
  2013. using conditional compilation.
  2014.  
  2015. Creating a new @q<ck?fio> module, as above.
  2016.  
  2017. If the system is not Unix-like, then a new @q<ckuusr> module may be required,
  2018. as well as a different invocation of it from @q<ckcmai>.
  2019.  
  2020. If the distributed connect module doesn't work or performs poorly, then
  2021. it may be replaced.  For instance, interrupt-@|driven i/o may be required,
  2022. especially if the system doesn't have forks.
  2023. @end(enumerate)
  2024. Those who favor a different style of user/program interaction from that
  2025. provided in @q(ckuusr.c) may replace the entire module, for instance with one
  2026. that provides a mouse/@|window/@|icon environment, a menu/@|function-@|key
  2027. environment, etc.
  2028.  
  2029. A few guidelines should be followed to maintain portability:
  2030. @begin(itemize)
  2031. Keep variable and function names to 6 characters or less.  Don't use
  2032. identifiers that are distinguished from one another only by alphabetic
  2033. case.
  2034.  
  2035. Keep modules small.  For instance, on a PDP-11 it is necessary to keep
  2036. the code segment of each module below 8K in order to allow the segment
  2037. mapping to occur which is necessary to run programs larger than 64K on a
  2038. non-@|I-and-D-@|space machine.
  2039.  
  2040. Keep strings short; many compilers have restrictive maximum lengths; 128
  2041. is the smallest maximum string constant length we've encountered so far.
  2042.  
  2043. Keep (f,s)printf formats short.  If these exceed some compiler dependent
  2044. maximum (say, 128) memory will be overwritten and the program will probably
  2045. core dump.
  2046.  
  2047. Do not introduce system dependencies into @q(ckcpro.w) or @q(ckcfn*.c).
  2048.  
  2049. If a variable is a character, declare as CHAR, not int, to prevent the
  2050. various sign extension and byte swapping foulups that occur when characters
  2051. are placed in integer variables.
  2052.  
  2053. Remember that different systems may use different length words for different
  2054. things.  Don't assume an integer can be used as a pointer, etc.
  2055.  
  2056. Don't declare static functions; these can wreak havoc with systems that do
  2057. segment mapping.
  2058.  
  2059. In conditional compilations expressions, use @q(#ifdef) and @q(#ifndef) and
  2060. not @q(#if), which is not supported by some compilers.  Also, don't use any
  2061. operators in these expressions; many compilers will fail to understand
  2062. expressions like @w<@q(#ifdef FOO | BAR)>.  Also, don't put trailing tokens
  2063. on @q<#else>'s or @q<#endif>'s (use @q</*> comments @q<*/>).
  2064.  
  2065. Don't define multiline macros.
  2066. @End(Itemize)
  2067. In general, remember that this program will have to be compilable by old
  2068. compilers and runnable on small systems.
  2069.  
  2070.